Sign in to follow this  
xiexiest

Multiple Y Axis With Mscombidy2D.swf

Recommended Posts

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 by xiexiest

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi,

 

Welcome to FusionCharts Forum! smile.gif

 

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

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

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 by Bindhu

Share this post


Link to post
Share on other sites

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

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!

post-23884-0-47738500-1350989295_thumb.png

Share this post


Link to post
Share on other sites

 

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this