如何在asp.net图表项控件中设置柱形图的最小值和最大值

时间:2011-08-01 05:24:50

标签: c# asp.net controls charts

我的图表控件存在问题

问题:我在绘制图表时动态更改图表的轴是什么?           我想调整轴,使x轴最小值是我想用它开始图表的值,然后关闭到我需要的最大值..?

仅供参考我使用的图表类型是COLUMN。

所以请告诉我该怎么办??

我尝试动态设置最小和最大属性,但它们只采用双重类型,但根据我要显示的数据,我的日期类型是什么。

先谢谢你

请尽可能将答案发送至rajekasani05@gmail.com

日Thnx RK

1 个答案:

答案 0 :(得分:0)

您可以将点集合绑定到DateTime列表或任何您想要的内容:

IList<DateTime> listx = new List<DateTime>();
IList<double> listy = new List<double>();

//iterate and add your values to the two lists: listx and listy

//when you're done, bind the lists to the points collection
yourSeries.Points.DataBindXY(listx, listy);

希望这会有所帮助:)