This is a migrated thread and some comments may be shown as answers.

Multiple y-axis and readability

3 Answers 108 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
Toni
Top achievements
Rank 2
Toni asked on 10 Jun 2013, 01:46 PM
Hey!

We have found radchartview rly powerfull tool for our custom reporting. With that in mind we have hit small issue with recognizing which series is using which y-axis. On following example (attachment) we got 9 different series using 3 different y-axis (or to be correct 3series from which 3 different values is shown).
Now the main question is, how can we make this more readable? Atm it's on terrible shape if it got more then 1 serie of values shown (=3different values from 1 serie). Having  one y-axis using different style (bars) could work, but that doesn't help with 3+ y-Axis. Is there any clear solution atm or do we have to life with the limitations it got atm?

3 Answers, 1 is accepted

Sort by
0
Ivan Petrov
Telerik team
answered on 13 Jun 2013, 11:10 AM
Hello Toni,

Thank you for writing.

The problem at hand would be more in a designer's competence to solve so I went on and asked ours for advice. Her proposition was to either split the chart into three individual charts or make the axes in three different colors and then make the series plotted against them in different shades of this color. I have attached an example project demonstrating the second option so you can get a better idea. The colors there are probably not the best one can use but this again is more a job for a designer.

I hope this will be useful. Should you have further questions, I would be glad to help.

Regards,
Ivan Petrov
Telerik
RadChart for WinForms is obsolete. Now what?
0
Toni
Top achievements
Rank 2
answered on 13 Jun 2013, 11:32 AM
Hei,

Thx for answer, there aint always 'easy' way to go :) . We were allready thinking thats the way to go, so we decided to go using different premade palettes (warm, cold, etc) for different y-axis. Only thing we are still wondering is how to get normal y-Axis use it's palettes color (now always comes black).

Overall there is always still ways to make graphs littlebit easier to read (like legends on groups by y-axis etc). Thought things like this could also be done by code.


Toni
0
Anton
Telerik team
answered on 18 Jun 2013, 11:29 AM
Hi Toni,

Thank you for writing back.

Each series has properties VerticalAxis and HorizontalAxis which allow accessing the X and Y Axes. Consider the following example:
foreach (LineSeries series in this.radChartView1.Series)
{
    series.VerticalAxis.BorderColor = Color.Red;
    series.HorizontalAxis.BorderColor = Color.Red;
}

I hope this helps.

Regards,
Anton
Telerik
RadChart for WinForms is obsolete. Now what?
Tags
ChartView
Asked by
Toni
Top achievements
Rank 2
Answers by
Ivan Petrov
Telerik team
Toni
Top achievements
Rank 2
Anton
Telerik team
Share this question
or