I am trying to fine tune my Dial Chart. I have 2 issues that I need help on:
1) I have added color ranges to my chart (red,yellow,green) so I want to get rid of the original (blue) scale bar that was used:
I tried adding this, but it still shows. How do I remove
<minor_tickmark enabled="false" />
2) I defined my MAX_SCORE on my chart as '4'. When the chart displays, it shows my ranges fine (0-4), but for some reason it is putting the '4' again in a little box right before my pointer. How do I remove that.
Here is my XML:
<?xml version="1.0" encoding="UTF-8"?>
<anychart>
<gauges>
<gauge>
<chart_settings>
<title>
<text><![CDATA[Campus Average Scores]]></text>
</title>
<chart_background enabled="false">
<border enabled="false" />
</chart_background>
</chart_settings>
<circular>
<axis radius="50" start_angle="90" sweep_angle="180">
<scale minimum="0" maximum="4" major_interval="1" minor_interval=".25" />
<minor_grid enabled="False"/>
<minor_tickmark enabled="false" />
<custom_labels>
<custom_label value="2.75" enabled="true">
<label enabled="true" align="Outside" padding="20">
<format><![CDATA[Optimal]]></format>
</label>
<tickmark enabled="true" shape="Star5" auto_rotate="false" width="10" length="10" align="Inside" padding="-12">
<fill color="Blue" />
<border color="DarkColor(Yellow)" />
</tickmark>
</custom_label>
</custom_labels>
<color_ranges>
<color_range start="0" end=".9" color="Red" />
<color_range start="1" end="1.9" color="Yellow" />
<color_range start="2" end="4" color="Green" />
</color_ranges>
</axis>
<pointers>
#DATA#
<tooltip enabled="true">
<font family="Tahoma" size="10" color="0x000000" />
<position padding="10" />
</tooltip >
<label enabled="true" align="Outside" text_align="Near" >
<format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
<font family="Tahoma" size="10" color="0x000000" />
<position anchor="CenterTop" />
</label>
</pointer>
</pointers>
</circular>
</gauge>
</gauges>
</anychart>