markrit Report post Posted April 29, 2008 I have managed to get the multiline tooltext to work on Bar2d.swf file, but I can not get it to work on a MSCombi2D.swf file. I am trying to apply to one of the datasets. Is there an example of code showing how to do this. rgds, Mark Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 30, 2008 Hi, Could you please try this XML once : <chart xAxisName='Multi<BR>Line<BR>XAxisName' yAxisName='Multi<BR>Line<BR>XAxisName' caption='Multi<BR>Line<BR>caption' subcaption='Multi<BR>Line<BR>sub-caption'> <categories> <category label='Multi-line<BR>Label 1<BR>' /> <category label='Multi-line<BR>Label 2<BR>' /> </categories> <dataset seriesName='Sr 1 : No Multi-line here' > <set value='28' toolText='Multi<BR>Line<BR>tooltip D1:1' /> <set value='2' toolText='Multi<BR>Line<BR>tooltip D1:2' /> </dataset> <dataset seriesName='Sr 2 : No Multi-line here' renderAs='Line'> <set value='13' tooltext='Multi<BR>Line<BR>tooltip D2:1' /> <set value='0' tooltext='Multi<BR>Line<BR>tooltip D2:2' /> </dataset> <styles> <definition> <style name='myHTMLFont' type='font' isHTML='1' /> </definition> <application> <apply toObject='TOOLTIP' styles='myHTMLFont' /> <apply toObject='YAXISNAME' styles='myHTMLFont' /> <apply toObject='XAXISNAME' styles='myHTMLFont' /> <apply toObject='Legend' styles='myHTMLFont' /> <apply toObject='caption' styles='myHTMLFont' /> <apply toObject='subcaption' styles='myHTMLFont' /> <apply toObject='datalabels' styles='myHTMLFont' /> </application> </styles> </chart> Share this post Link to post Share on other sites
markrit Report post Posted April 30, 2008 This works thanks. Share this post Link to post Share on other sites