Sign in to follow this  
TracyH

AngularGuage not turning off values

Recommended Posts

I am displaying an angular guage just as I want with 1 exception.....the guage displays values 0-4 as labels but I do not want these to show up, I am using annotations to display text instead. Any ideas? Here is my html

<chart

 lowerLimit='0'

 upperLimit='4'

 lowerLimitDisplay=''

 upperLimitDisplay=''

 gaugeStartAngle='135'

 gaugeEndAngle='45'

 gaugeOriginX='130'

 gaugeOriginY='180'

 gaugeOuterRadius='140'

 palette='1'

 numberSuffix=''

 tickValueDistance='20'

 showValue=''

 majorTMHeight='0'

 minorTMHeight='0'>

<colorRange>

<color minValue='0' maxValue='1' code='FF654F'/>

<color minValue='1' maxValue='2' code='FF654F'/>

<color minValue='2' maxValue='3' code='F6BD0F'/>

<color minValue='3' maxValue='4' code='8BBA00'/>

</colorRange>

 

<dials>

<dial value='2' rearExtension='10'/>

</dials>

 

<annotations>

<annotationGroup>

<annotation type='text' label='Deployment' font='Verdana' xPos='005' yPos='45' align='left' vAlign='left' fontcolor='333333' fontSize='8' isBold='1'/> 

<annotation type='text' label='Bouncing' font='Verdana' xPos='080' yPos='25' align='left' vAlign='left' fontcolor='333333' fontSize='8' isBold='1'/>

<annotation type='text' label='DB Down'   font='Verdana' xPos='135' yPos='25' align='left' vAlign='left' fontcolor='333333' fontSize='8' isBold='1'/>

<annotation type='text' label='Available'  font='Verdana' xPos='195' yPos='45' align='left' vAlign='left' fontcolor='333333' fontSize='8' isBold='1'/>

</annotationGroup>

</annotations>

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this