You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/docs/content/4.4/api/CChart.api.mdx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,8 @@ import CChart from '@coreui/react-chartjs/src/CChart'
17
17
|**height**| Height attribute applied to the rendered canvas. |`number`| 150 |
18
18
|**id**| ID attribute applied to the rendered canvas. |`string`| - |
19
19
|**options**| The options object that is passed into the Chart.js chart.<br/><br/>{@linkhttps://www.chartjs.org/docs/latest/general/options.html More Info}|`_DeepPartialObject<CoreChartOptions<keyof ChartTypeRegistry> & ElementChartOptions<keyof ChartTypeRegistry> & PluginChartOptions<...> & DatasetChartOptions<...> & ScaleChartOptions<...>>`| - |
20
-
|**plugins**| The plugins array that is passed into the Chart.js chart (more info)<br/><br/>{@linkhttps://www.chartjs.org/docs/latest/developers/plugins.html More Info}|`Plugin<keyof ChartTypeRegistry, AnyObject>[]`|-|
20
+
|**plugins**| The plugins array that is passed into the Chart.js chart (more info)<br/><br/>{@linkhttps://www.chartjs.org/docs/latest/developers/plugins.html More Info}|`Plugin<keyof ChartTypeRegistry, AnyObject>[]`|[]|
21
21
|**redraw**| If true, will tear down and redraw chart on all updates. |`boolean`| false |
Copy file name to clipboardExpand all lines: packages/docs/content/4.4/api/CCharts.api.mdx
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,5 @@ import CChartBar from '@coreui/react-chartjs/src/CCharts'
19
19
|**options**| The options object that is passed into the Chart.js chart.<br/><br/>{@linkhttps://www.chartjs.org/docs/latest/general/options.html More Info}|`_DeepPartialObject<CoreChartOptions<keyof ChartTypeRegistry> & ElementChartOptions<keyof ChartTypeRegistry> & PluginChartOptions<...> & DatasetChartOptions<...> & ScaleChartOptions<...>>`| - |
20
20
|**plugins**| The plugins array that is passed into the Chart.js chart (more info)<br/><br/>{@linkhttps://www.chartjs.org/docs/latest/developers/plugins.html More Info}|`Plugin<keyof ChartTypeRegistry, AnyObject>[]`| - |
21
21
|**redraw**| If true, will tear down and redraw chart on all updates. |`boolean`| false |
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
182
182
<hr />
183
183
<pclassName="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
@@ -186,7 +186,7 @@ React Alert can also incorporate supplementary components & elements like he
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works withthis kind of content.</p>
191
191
<hr />
192
192
<p className="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
Copy file name to clipboardExpand all lines: packages/docs/content/4.4/forms/range.mdx
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -38,23 +38,23 @@ Add the `disabled` boolean attribute on an input to give it a grayed out appeara
38
38
Range inputs have implicit values for `min` and `max`—`0` and `100`, respectively. You may specify new values for those using the `min` and `max` attributes.
By default, range inputs "snap" to integer values. To change this, you can specify a `step` value. In the example below, we double the number of steps by using `step="0.5"`.
50
+
By default, range inputs "snap" to integer values. To change this, you can specify a `step` value. In the example below, we double the number of steps by using `step={0.5}`.
0 commit comments