Chart PlotArea

I would like to know that is there any option to set the Chart PlotArea's FillType as NoFill.

Currently,
chartPlotArea.Fill.FillType = ExcelFillType.Gradient/Pattern/Picture/SolidColor/Texture
are provided as avilable options as I could explore. I hope we can set NoFill also (but don't know how?).

1 Reply

GM Geetha M Syncfusion Team November 30, 2009 12:35 PM UTC

Hi Ashish,

Thank you for your interest in Syncfusion products.

There is direct option to set "No Fill" for PlotArea. But, you may achieve the same using the code snippet given below.

chart.PlotArea.Fill.FillType = ExcelFillType.SolidColor;
chart.PlotArea.Fill.ForeColor = Color.Transparent;

Please try this and let me know if you have any questions.

Regards,
Geetha

Loader.
Up arrow icon