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

Marked Zone Chart

1 Answer 76 Views
Chart (obsolete as of Q1 2013)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Peng Hock Lee
Top achievements
Rank 1
Peng Hock Lee asked on 23 Nov 2012, 02:14 AM

Hi Telerik,

Is this Marked Zones Chart available in “2011.2 11.831 (Aug 31, 2011)” version of Windows forms

Regards

Vinodh

1 Answer, 1 is accepted

Sort by
0
Missing User
answered on 23 Nov 2012, 04:23 PM
Hello Vinodh,

Marked Zones are available in RadChart for WinForms in the 2011.2 11.831 release. You need to add  a ChartMarkedZone object to the MarkedZones collection property of the RadChart's PlotArea. See the example below:

Telerik.Charting.ChartMarkedZone chartMarkedZone1 = new Telerik.Charting.ChartMarkedZone();
chartMarkedZone1.Name = "Marked zone 1";
chartMarkedZone1.ValueStartX = 1;
chartMarkedZone1.ValueEndX = 9;
chartMarkedZone1.ValueStartY = 60;
chartMarkedZone1.ValueEndY = 80;
this.radChart1.PlotArea.MarkedZones.Add(chartMarkedZone1);

Best regards,
Ivan N.
the Telerik team
Q3’12 of RadControls for WinForms is available for download (see what's new). Get it today.
Tags
Chart (obsolete as of Q1 2013)
Asked by
Peng Hock Lee
Top achievements
Rank 1
Answers by
Missing User
Share this question
or