I need to set the static width of a series of histograms using dotNetCharting. My graph has three series of collections of lines, splines, and column types. I would just like to set a static width for all column types.
I tried using:
myChart.DefaultAxis.StaticColumnWidth = 10;
But the .DefaultAxis property is not valid in intellisense for the entire chart and column series collection. Do you need to add data with data before installing this series?
Also, I tried adding properties to the series object, no luck.
Any ideas?
source
share