AD
Administrator
Syncfusion Team
March 6, 2007 02:45 AM UTC
Hi Mushtaque,
Thank you for using Syncfusion products.
Inorder to disable editing the Style settings in the Chart control, Please try the following code and let me know if this helps.
[C#]
//Disable the Legend property edit window and series style edit window
this.chartControl1.Legend.Style = ChartLegendStyle.Empty;
//Disable series style edit window only.
this.chartControl1.Legend.Style = ChartLegendStyle.SupportEditProperties ;
//Disable Legend property edit window only.
this.chartControl1.Legend.Style = ChartLegendStyle.SupportItemStyleEdit ;
Regards,
Rajesh