1.6.5. RadarChart
The RadarChart
component allows you to create radar/polar charts.
Figure 6. RadarChart
XML name of the component: chart:radarChart
.
- Data binding:
-
You can assign a datasource of a
CollectionDatasource
type to the chart and then define thecategoryField
attribute for theradarChart
element andvalueField
attribute for the nestedgraph
element:<chart:radarChart id="radarChart" categoryField="country" datasource="countryLitresDs" 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>
-
RadarChart
event 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.
-
For more details, see AmCharts documentation.