thomaspooler4 Report post Posted February 9, 2017 In our charts we have a single style that applies to a lot of labels on the chart (which include YAXISVALUES and DATALABELS). However for some reason the bold property does not apply on yAxis data labels. The chart we are using is the column 2D chart. The styling XML is as follows : <styles> <definition> <style name='connexica' type='font' color='000000' bgColor='ffffff' font='Arial' size='10' bold='1' italic='1'/> <style name='displayValues' type='font' font='Arial' size='10' color='AAFF00' bold='1' italic='1'/> </definition> <application> <apply toObject='BACKGROUND' styles='connexica'/> <apply toObject='CANVAS' styles='connexica'/> <apply toObject='CAPTION' styles='connexica'/> <apply toObject='DATALABELS' styles='connexica'/> <apply toObject='DATAPLOT' styles='connexica'/> <apply toObject='DIVLINES' styles='connexica'/> <apply toObject='HGRID' styles='connexica'/> <apply toObject='SUBCAPTION' styles='connexica'/> <apply toObject='TRENDLINES' styles='connexica'/> <apply toObject='TRENDVALUES' styles='connexica'/> <apply toObject='VLINES' styles='connexica'/> <apply toObject='XAXISNAME' styles='connexica'/> <apply toObject='YAXISNAME' styles='connexica'/> <apply toObject='YAXISVALUES' styles='connexica'/ ><apply toObject='LEGEND' styles='connexica'/> <apply toObject='SCROLLPANE' styles='connexica'/> <apply toObject='DATAVALUES' styles='connexica'/> </application> </styles> Can you confirm if this is a bug or if there is a solution to this problem? Regards Thomas Pooler (Connexica) Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted February 14, 2017 Hi, The STYLE element has been deprecated. Customization is now possible through chart attributes. Please upgrade to the latest version of FusionCharts i.e. (3.11.3) For downloading the latest version please refer here. You can explore how the charts are configured with different attribute in this link http://www.fusioncharts.com/javascript-chart-fiddles/ For further reference please check this sample fiddle link http://jsfiddle.net/ayanbhaduryfc/L2jdzss3/ Share this post Link to post Share on other sites
thomaspooler4 Report post Posted February 15, 2017 (edited) Hello. Looking at the sample fiddle link it seems that the bold attribute is being controlled by "outcnvbaseFont": "Roboto",. Yet applying that to our own charts did not apply the bold effect at all. It merely changed the font to the one named in the attribute. Putting this on the other fiddle samples had a similar effect. with none of them applying the bold text at all. Is there an attribute where we can specify if the outside base font is bold or not? Like "outcnvbaseFontBold". We are on the most up to date version of fusion. Thanks Thomas Pooler (Connexica) Edited February 15, 2017 by thomaspooler4 Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted February 17, 2017 Hi, Thanks for replying back. Natively It is not possible to only specify y-axis scale values as bold. Only workaround will be that you specify `baseFont` or `outCnvBaseFont` with font that will visualize as bold. You can refer the above JSFiddle which we have provided earlier for reference. Share this post Link to post Share on other sites