Reputation: 529
I am drawing a bar chart and I saw some of them have different width than others.
I tried changing PointWidth
and PixelPointWidth
properties. But of no use. Here is the graph I got :
The only configure I done is barChart1.Series["DeltaE"]["PointWidth"] = (0.6).ToString();
Upvotes: 0
Views: 865
Reputation: 914
You may have too many data and the chart is too small. Try delete some data or make the chart bigger.
I made an example. I created a c# project, put a chart in the form, randomly add some data and run the program.
When the chart is big enough, it looks well.
When the chart is smaller, not all the columns are the same width.
Upvotes: 1