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

Show negative & possitive values of Y axis in different colors. eg Green & Red

1 Answer 46 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Avi
Top achievements
Rank 1
Avi asked on 16 Jul 2009, 06:20 AM
Hi,

    I wish to show negative and positive values on Y axis with different colors.

    If possible,i also wish to show the values on the series with different color.
    How can i do this.


Thanks,
Avi

1 Answer, 1 is accepted

Sort by
0
Dwight
Telerik team
answered on 20 Jul 2009, 10:50 AM
Hello Avi,

Such functionality is not available out-of-the-box, but can be easily achieved.
Here is a sample code of RadChart.BeforeLayout event handler:
private void radChart1_BeforeLayout(object sender, EventArgs e) 
    foreach (ChartAxisItem item in this.radChart1.PlotArea.YAxis.Items) 
    { 
        if (item.Value < 0) 
            item.TextBlock.Appearance.TextProperties.Color = Color.Red; 
    } 
 
    foreach (ChartSeries series in this.radChart1.Series) 
        foreach (ChartSeriesItem item in series.Items) 
        { 
            if (item.YValue < 0) 
                item.Label.TextBlock.Appearance.TextProperties.Color = Color.Red; 
        } 
 

Note, that this code will change the colors of the labels that have negative values for both Y axis and all the series in the chart.

Sincerely yours,
Evtim
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Chart (Obsolete)
Asked by
Avi
Top achievements
Rank 1
Answers by
Dwight
Telerik team
Share this question
or