Enable/Disable 3D property of a chart programatically
Bosko
Belgrade, Serbia
Can I do this?
For example, I want to put CheckBox on windows form, and when it is checked, 3D will be enabled in a chart, in a "column type" series.
I tried something like:
but beyond that, I didn't found property to enable/disable 3D in a chart...
For example, I want to put CheckBox on windows form, and when it is checked, 3D will be enabled in a chart, in a "column type" series.
I tried something like:
FastReport.MSChart.MSChartObject chart1 = (FastReport.MSChart.MSChartObject)report1.FindObject("MSChart1");
but beyond that, I didn't found property to enable/disable 3D in a chart...
Comments
chart1.Chart.ChartAreas[0].Area3DStyle.Enable3D = true;
For further information, refer to MS Chart control documentation.