2.5.5. RadarChart
The RadarChart component allows you to create radar/polar charts.
XML name of the component: chart:radarChart.
- Data binding:
-
You can assign a
CollectionContainerto the chart and then define thecategoryFieldattribute for theradarChartelement andvalueFieldattribute for the nestedgraphelement:<chart:radarChart id="radarChart" categoryField="country" dataContainer="countryLitresDc" height="100%" startDuration="2" theme="LIGHT" width="100%"> <chart:graphs> <chart:graph balloonText="[[value]] litres of beer per year" bullet="ROUND" valueField="litres"/> </chart:graphs> </chart:radarChart> -
RadarChartevent listeners -
-
AxisZoomListener– chart axis scaling. -
ChartClickListener– click on the canvas. -
ChartRightClickListener– right click on the canvas. -
GraphClickListener– click on a graph. -
GraphItemClickListener– click on a graph item. -
GraphItemRightClickListener– right click on a graph item. -
RollOutGraphListener– called when the user rolls-out of a graph. -
RollOutGraphItemListener– called when the user rolls-out of the data item. -
RollOverGraphListener– called when the user rolls-over a graph. -
RollOverGraphItemListener– called when the user rolls-over data item.
-
For more details, see AmCharts documentation.