xiexiest Report post Posted October 19, 2012 (edited) I use MSCombiDY2D.swf to create a chart combine line and column with double Y axis. But I need the third Y axis ,because the value unit are different from each other. can you tell me how can I do ? Can other charts can do ? waiting for your answers. Edited October 19, 2012 by xiexiest Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 19, 2012 Hi, Welcome to FusionCharts Forum! It is not possible to render MSCombiDY2D chart with more than two Y-axes. However, you can use Multi-Axis Line chart from PowerCharts XT pack. For more information, please refer the following link: http://docs.fusionch...s/Overview.html Hope this helps! Share this post Link to post Share on other sites
xiexiest Report post Posted October 22, 2012 Hi,thanks for your answer! I wonder to know which version start to support MultiAxisLine chart ? Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 22, 2012 Hi, Multi-axis Line chart was introduced from PowerCharts v3.0 For more information, please read the version history of PowerCharts XT pack: http://docs.fusioncharts.com/powercharts/Contents/?Introduction/WhatsNew32.html Hope this helps! Share this post Link to post Share on other sites
xiexiest Report post Posted October 22, 2012 Hi! Thanks for your answer. I meet a problem about toolText. I read the doc online,It said ,"By default, PowerCharts XT shows the series Name, Category Name and value as tool tip text for that data item". But I found that the toolText on the chart didn't include series Name. How can I display more information for the data item on the tool tip ? Share this post Link to post Share on other sites
Guest Bindhu Report post Posted October 22, 2012 (edited) Hi, But I found that the toolText on the chart didn't include series Name. >> Please share the XML data for testing purposes. Let us also know the chart type being used. How can I display more information for the data item on the tool tip ? >> Please use toolText attribute. You can set a custom tool tip for any of the data points using tooltext attribute of the <set> element which is used to define the individual data elements. Ref. Code: <set label='Jan' value='220000' toolText='Highest'/> For more details, please refer to the link below, http://docs.fusionch...sc/ToolTip.html Hope this helps! Edited October 22, 2012 by Bindhu Share this post Link to post Share on other sites
xiexiest Report post Posted October 23, 2012 Thanks for your answer! The xml are as below: <chart caption='172.18.254.185' xAxisName='Time' showValues='0' divLineAlpha='100' numVDivLines='4' vDivLineAlpha='0' showAlternateVGridColor='1' alternateVGridAlpha='5' > <categories><category label='2012101700' /><category label='2012101701' /> <category label='2012101702' /><category label='2012101703' /> <category label='2012101704' /><category label='2012101705' /> <category label='2012101706' /><category label='2012101707' /> <category label='2012101708' /><category label='2012101709' /> <category label='2012101710' /><category label='2012101711' /> <category label='2012101712' /><category label='2012101713' /> <category label='2012101714' /><category label='2012101715' /> <category label='2012101716' /></categories> <axis title='flux' titlePos='left' tickWidth='10' divlineisdashed='1' defaultNumberScale='MB' numberScaleValue='1024,1024' numberScaleUnit='Gb,Tb' decimals='2' forceDecimals='1' > <dataset seriesName='infulx' > <set value='4777296' /> <set value='8151122' /><set value='6765429' /> <set value='6872906' /><set value='7991352' /> <set value='14413205' /><set value='8566808' /> <set value='18671469' /><set value='18954468' /> <set value='9144829' /><set value='16287147' /> <set value='7879392' /><set value='14771031' /> <set value='12990172' /><set value='11779701' /> <set value='8714545' /><set value='1567173' /> </dataset> </axis> </chart> I have read the doc about tooltext,But I also has some problems. <chart> <set label='John' value='420' tooltext='John Miller[b]{br}[/b]Score: 420[b]{br}[/b]Rank:2'/> <set label='Mary' value='295' tooltext='Mary Evans[b]{br}[/b]Score: 295[b]{br}[/b]Rank:3'/> <set label='Tom' value='523' tooltext='Tom Bowler[b]{br}[/b]Score: 523[b]{br}[/b]Rank:1'/> </chart> Can this achieve by other ways? such as use a quote of series Name instead? <set label='Tom' value='523' tooltext='{seriesName} {setLable} {br}Score: {value}{br}'/> Share this post Link to post Share on other sites
Guest Bindhu Report post Posted October 23, 2012 Hi, I am afraid, I am unable to replicate the issue. Please find attached screen shot of the chart rendered. You may also explicitly include the series name. Hope this helps! Share this post Link to post Share on other sites
FusionCharts Support Report post Posted October 25, 2012 I have read the doc about tooltext,But I also has some problems. <chart> <set label='John' value='420' tooltext='John Miller[b]{br}[/b]Score: 420[b]{br}[/b]Rank:2'/> <set label='Mary' value='295' tooltext='Mary Evans[b]{br}[/b]Score: 295[b]{br}[/b]Rank:3'/> <set label='Tom' value='523' tooltext='Tom Bowler[b]{br}[/b]Score: 523[b]{br}[/b]Rank:1'/> </chart> Can this achieve by other ways? such as use a quote of series Name instead? <set label='Tom' value='523' tooltext='{seriesName} {setLable} {br}Score: {value}{br}'/> Hi, In case you wish to use some template place-holders like {seriesName} in the XML definition and which would in runtime be replaced by the actual values - please note that this is not supported as of now. Share this post Link to post Share on other sites