|
1 | 1 | <div id="action-description">
|
2 | 2 | <p>
|
3 |
| - This sample demonstrates polar series with stacking column type. The switching between polar and radar series can be done by using <code>Series Type</code> in property panel. |
| 3 | + This sample demonstrates polar series with stacking column type. The switching between polar and radar series can be done by using <code>Series Type</code> in property panel. |
4 | 4 | </p>
|
5 | 5 | </div>
|
6 | 6 | <div class="control-section">
|
7 | 7 | <div class="col-lg-9">
|
8 |
| - <ej-chart #chart style='display:block;' id='chartcontainer' [primaryXAxis]='primaryXAxis' [title]='title' |
9 |
| - [tooltip]='tooltip' (load)='load($event)'> |
| 8 | + <ej-chart #chart style='display:block;' id='chartcontainer' [primaryXAxis]='primaryXAxis' [title]='title' [tooltip]='tooltip' (load)='load($event)'> |
10 | 9 | <e-series-collection>
|
11 |
| - <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y' name='' [border]='border'> |
| 10 | + <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y' name='6-9' [border]='border'> |
12 | 11 | </e-series>
|
13 |
| - <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y1' name='' [border]='border'> |
| 12 | + <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y1' name='9-11' [border]='border'> |
14 | 13 | </e-series>
|
15 |
| - <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y2' name='' [border]='border'> |
| 14 | + <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y2' name='11-14' [border]='border'> |
16 | 15 | </e-series>
|
17 |
| - <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y3' name='' [border]='border'> |
| 16 | + <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y3' name='14-17' [border]='border'> |
18 | 17 | </e-series>
|
19 |
| - <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y4' name='' [border]='border'> |
| 18 | + <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y4' name='17-20' [border]='border'> |
20 | 19 | </e-series>
|
21 |
| - <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y5' name='' [border]='border'> |
| 20 | + <e-series [dataSource]='data' type='Polar' drawType='StackingColumn' xName='x' yName='y5' name='23 Above' [border]='border'> |
22 | 21 | </e-series>
|
23 | 22 | </e-series-collection>
|
24 | 23 | </ej-chart>
|
|
48 | 47 | </div>
|
49 | 48 | <div id="description">
|
50 | 49 | <p>
|
51 |
| - In this example, you can see how to render and configure the polar series with StackingColumn draw type charts. You can use <code>border</code>, |
52 |
| - <code>fill</code> properties to customize the data appearance. <code>dataLabel</code> is used to represent individual |
53 |
| - data and its value. |
| 50 | + In this example, you can see how to render and configure the polar series with StackingColumn draw type charts. You can use <code>border</code>, |
| 51 | + <code>fill</code> properties to customize the data appearance. <code>dataLabel</code> is used to represent individual data and its value. |
54 | 52 | </p>
|
55 | 53 | <p>
|
56 | 54 | Tooltip is enabled in this example, to see the tooltip in action, hover a point or tap on a point in touch enabled devices.
|
|
0 commit comments