chartnaplon = new cfx.Chart();
var titles = chartnaplon.getTitles();
var title = new cfx.TitleDockable();
title.setText("Title");
titles.add(title);
chartnaplon.getData().setSeries(3);
chartnaplon.getAxisY().setMin(0);
chartnaplon.getAxisY().setMax(500000);
chartnaplon.getLegendBox().setDock(cfx.DockArea.Bottom);
var series1 = chartnaplon.getSeries().getItem(0);
var series2 = chartnaplon.getSeries().getItem(1);
var series3 = chartnaplon.getSeries().getItem(2);
series1.setGallery(cfx.Gallery.Lines);
series2.setGallery(cfx.Gallery.Lines);
series3.setGallery(cfx.Gallery.Lines);
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
flapane
Hi, let's say I have a chart with three different series, one in the 0-100 range and two in the 10000-50000 range:
http://jsfiddle.net/YQby7/69/
How can I set different a scale for Serie A, and a second scale for Series B and C?
I tried to check jchartfx demos, but to be honest I haven't been able to adapt the examples to my chart.
Thanks in advance
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.