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
In this example, you can see how to render and configure the bubble type charts.A bubble chart is a type of chart that displays three dimensions of data.
9
+
Each points is drawn as a bubble, where bubble's size deponds on <code>size</code> property. You can use <code>fill</code> property to customize the data appearance.
10
+
</p>
11
+
<p>
12
+
Tooltip is enabled in this example, to see the tooltip in action, hover a point or tap on a point in touch enabled devices.
13
+
</p>
14
+
<br>
15
+
<pstyle="font-weight: 500">Injecting Module</p>
16
+
<p>
17
+
Chart component features are segregated into individual feature-wise modules. To use bubble series, we need to inject
18
+
<code>BubbleSeries</code> module using <code>Chart.Inject(BubbleSeries)</code> method.
19
+
</p>
20
+
<p>
21
+
More information on the bubble series can be found in this
In this example, you can see how to render and configure the range column type series. RangeColumn type charts are used for data having two values in y-axis.
7
+
Those can be represented by <code>high</code> and <code>low</code> properties,which represent start and end point of columns in chart. You can use <code>border</code>,
8
+
<code>fill</code> properities to customize the data appearance.
9
+
</p>
10
+
<p>
11
+
Tooltip is enabled in this example, to see the tooltip in action, hover a point or tap on a point in touch enabled devices.
12
+
</p>
13
+
14
+
<pstyle="font-weight: 500">Injecting Module</p>
15
+
<p>
16
+
chart component features are segregated into individual feature-wise modules. To use range column series, we need to Injecting
17
+
<code>RangeColumnSeries</code> module using <code>chart.Inject(RangeColumnSeries)</code> method.
18
+
</p>
19
+
<p>
20
+
More information on the range column series can be found in this
In this example, you can see how to render and configure the 100% stacking area type charts. You can use <code>fill</code> properties to customize the 100% stacking area.
10
+
</p>
11
+
<br>
12
+
<pstyle="font-weight: 500">Injecting Module</p>
13
+
<p>
14
+
Chart component features are segregated into individual feature-wise modules. To use stackedArea100 series, we need to inject
15
+
<code>StackingAreaSeries</code> module using <code>Chart.Inject(StackingAreaSeries)</code> method.
16
+
</p>
17
+
<p>
18
+
More information on the stacking area series can be found in this
0 commit comments