Problem in Bar Chart Continous option

Hi,
I am having a problem where i need to display my bar chart in Continous manner. Means when i edit (my bar chart options) there is a option called Continous , if i select this option then my chart appear as a Area type chart and one thing more that how can i increase or decrease the width of bars. pl'z see the screenshot also for clear understanding about problem.

Thanks in advance
Gourav

New Folder5.zip

1 Reply

RF Rashidha F Syncfusion Team May 16, 2007 09:01 AM UTC

Hi Gourav,

Thanks for using Syncfusion Products.

You can able to achieve your requirement using Spacing and ColumnFixedWidth properties in chart control.

1)Spacing property in chart control.

Please refer the following code snippet which illustrates how to control the space between the points in a series.

this.chartControl1.Spacing = 0;

2)ColumnFixedWidth property in chart control.

The following code snippet which illustrates how to increase and decrease the column width in column chart.

this.chartControl1.ColumnWidthMode = ChartColumnWidthMode.FixedWidthMode;
this.chartControl1.ColumnFixedWidth = 10;

For more details please refer the following link.

http://www.syncfusion.com/products/chart/windows/features/Visual_Appearance/Spacing_Effects.aspx

Please take alook at the attached sample.

http://websamples.syncfusion.com/samples/Chart.Windows/F60957/main.htm

Let me know if this helps.

Regards,
Rashidha.

Loader.
Up arrow icon