ChrisMcEvoy Report post Posted October 5, 2012 How do I make the font bold for the Y axis details????? Share this post Link to post Share on other sites
Sanjukta Report post Posted October 6, 2012 Hi, It seems you are looking for the setting the y-axis name as bold. In case yes, please try applying the following style in the XML on the "YAXISNME" object. Ex: <styles> <definition> <style name='LabelFont' type='font' font='Arial' size='12' bold='1' /> </definition> <application> <apply toObject='YAXISNAME' styles='LabelFont' /> </application> </styles> If you are looking for something else, please let us know with a screenshot. Hope this helps. Share this post Link to post Share on other sites
ChrisMcEvoy Report post Posted October 8, 2012 Hi, It seems you are looking for the setting the y-axis name as bold. In case yes, please try applying the following style in the XML on the "YAXISNME" object. Ex: <styles> <definition> <style name='LabelFont' type='font' font='Arial' size='12' bold='1' /> </definition> <application> <apply toObject='YAXISNAME' styles='LabelFont' /> </application> </styles> If you are looking for something else, please let us know with a screenshot. Hope this helps. Hi that is great for the Y-Axis name but what I really need to change are the Axis Scale Values (see the red box in the attachment). and if possible the numbers above each coloured graph value. YAxis.rtf Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 9, 2012 Hi, You can apply font style to YAXISVALUES object of the chart. Please refer the following code: <styles> <definition> <style name='MyFirstFontStyle' type='font' font='Verdana' size='12' color='FF0000' bold='1' /> </definition> <application> <apply toObject='YAXISVALUES' styles='MyFirstFontStyle,MyFirstShadow' /> </application> </styles> For more information, please refer the following URL: http://docs.fusionch...les/Styles.html Hope this helps! Share this post Link to post Share on other sites
ChrisMcEvoy Report post Posted October 9, 2012 Hi, You can apply font style to YAXISVALUES object of the chart. Please refer the following code: <styles> <definition> <style name='MyFirstFontStyle' type='font' font='Verdana' size='12' color='FF0000' bold='1' /> </definition> <application> <apply toObject='YAXISVALUES' styles='MyFirstFontStyle,MyFirstShadow' /> </application> </styles> For more information, please refer the following URL: http://docs.fusionch...les/Styles.html Hope this helps! Thanks Sumedh, that worked at treat!!! Tried to do the same for the XAXISVALUES but it did not work Have attached a sample. I want the font of the column totals to be bigger and bolder too. Any help appreciated. XAxis.rtf Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 9, 2012 Hi Chris, As XAXISVALUES object is not supported in Column3D chart. So, applying font style on XAXISVALUES will not affect on the chart. Share this post Link to post Share on other sites
ChrisMcEvoy Report post Posted October 9, 2012 Sumedh, So is there no way of making the values in the Chart bigger and bolder???? Chris Share this post Link to post Share on other sites
ChrisMcEvoy Report post Posted October 9, 2012 It's okay I have sussed it out.. It is the 'DataValues' object!!! Thanks for your help Share this post Link to post Share on other sites
Sanjukta Report post Posted October 9, 2012 Hey Chris, Glad that you had resolved the issue. Happy FusionCharting! Share this post Link to post Share on other sites