我正在使用visual studio 2010用c_编写winforms应用程序。我正在使用常规工具箱中的chart控件查看sql数据库中的数据。如你所见,酒吧很宽。有什么特性或方法可以使它变小和固定吗?
最佳答案
我做了一个绑定三个值的小例子,并设置datapointcustomproperties的PixelPointWidth
。
int[] liste = new int[] { 1, 2, 3 };//, 4, 5, 6, 7 };
chart1.Series["Series1"].Points.DataBind(liste, "sampleData", "count", "Tooltip=count");
// dataPointCustomProperties
chart1.Series["Series1"]["PixelPointWidth"] = "1";
将生成此图表