Radar charts
Data Label
Hello, I want to display the data label. Please teach the method of displaying the data label. Thanks,
Hi, You can customize the label renderer of the angular axis using the labelRenderer style property of the AngularAxisRenderer class. The 'data' property of the custom renderer is an AxisLabel instance. Since angular axis labels are not supposed to display the data of the series (the typical way is to rely on datatips), you will have to get the series data in an other way. The following sample shows how to setup a custom renderer: <ilog:RadarChart ...> ... <ilog:angularAxisRenderers> <ilog:AngularAxisRenderer canDropLabels= "false"> <ilog:labelRenderer> <fx:Component> <s:DataRenderer> <s:layout> <s:VerticalLayout/> </s:layout> <s:Label text= "{data.text}"/> <s:HGroup> <s:Label text= "DATA1"/> <s:Label text= "DATA2"/> </s:HGroup> </s:DataRenderer> </fx:Component> </ilog:labelRenderer> </ilog:AngularAxisRenderer> </ilog:angularAxisRenderers> ... </ilog:RadarChart> Hope this helps, Damien
SystemAdmin 110000D4XK 2011-08-04T12:22:45Z Hi, You can customize the label renderer of the angular axis using the labelRenderer style property of the AngularAxisRenderer class. The 'data' property of the custom renderer is an AxisLabel instance. Since angular axis labels are not supposed to display the data of the series (the typical way is to rely on datatips), you will have to get the series data in an other way. The following sample shows how to setup a custom renderer: <pre class="jive-pre"> <ilog:RadarChart ...> ... <ilog:angularAxisRenderers> <ilog:AngularAxisRenderer canDropLabels= "false"> <ilog:labelRenderer> <fx:Component> <s:DataRenderer> <s:layout> <s:VerticalLayout/> </s:layout> <s:Label text= "{data.text}"/> <s:HGroup> <s:Label text= "DATA1"/> <s:Label text= "DATA2"/> </s:HGroup> </s:DataRenderer> </fx:Component> </ilog:labelRenderer> </ilog:AngularAxisRenderer> </ilog:angularAxisRenderers> ... </ilog:RadarChart> </pre> Hope this helps, Damien More... Hi, I want to display series data in Label. Please teach the method of setting series data in text of Label. Thanks,
personAAA 270004C6R3 2011-08-05T05:02:37Z Hi, I want to display series data in Label. Please teach the method of setting series data in text of Label. Thanks, More... Hi, Please do not post the same question twice. I have already answered to your question. Thanks, Damien
Related Links
Customizing radar charts angular axis labels
Custom labelFunction for radarchart
Linear Gradient as fill for RadarColumnSerie
Dragging Radar Line Series
How to change angular axis minimum and maximum?
RadarColumnSeries Remove Column Tapering on Large Values
Need to create radar chart without writing code
Radar Labels don\'t update
Radarchart gradient background
Run Time Radar Data
Rotating the angular axis
Set the chart.type="Cloumn" default
pls help me
How could I change RadarLinesSeries using Action Script?
Radar Chart - Custom Labels
Trouble with AngularAxisRenderer.labelRenderer on RadarChart