Vedmack Report post Posted August 7, 2012 HI I got an angular chart just like in this example http://www.fusioncharts.com/demos/gallery/gauges/chart.asp?id=angular_7 I used show value attribute to display the value of the chart, the thing is that the value is being displayed above the arrow "root circle" how can i display the value below the gauge chart ? and how can i make its font bigger...? Thanks ahead, Daniel. Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted August 8, 2012 Hi, Please find the response to your queries inline, below: how can i display the value below the gauge chart ? >>Could you please try by setting "valueBelowPivot" attribute to "1" in the <chart> element of your chart XML? and how can i make its font bigger...? >>You can increase the font size of the DIAL value, by applying Font style to the "VALUE" object of the gauge. Ref. Code: <chart> ...... <styles> <definition> <style name='MyFirstFontStyle' type='font' size='22' color='000000' /> </definition> <application> <apply toObject='VALUE' styles='MyFirstFontStyle' /> </application> </styles> </chart> Please find the attached screen shot of the same for your reference. Hope this helps ! Share this post Link to post Share on other sites
Vedmack Report post Posted August 8, 2012 It helps allot! Thanks Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted August 9, 2012 You are welcome. Share this post Link to post Share on other sites