随笔分类 - DundasChart应用
Asp.net下的图表控件
摘要:DundasChart在静态模式下不用flash画图时设置Z-INDEX才有效;在动态画图模式下的Z-INDEX默认设置无效,若想有效可参考下面网址所述解决:http://support2.dundas.com/forum/tm.aspx?m=12255&mpage=1&key=⿟ 原文解决办法转述:By default Flash objects are rendered on top of everything, so setting the z-index on a Flash object will not work. You will need t
阅读全文
摘要:单击按钮显示图表时,动态生成图表。见自带的示例中的Gallery->Animation->Animation Themes首先引用using Dundas.Charting.WebControl;然后在按钮单击事件中添加 下面两句即可// Set Flash chart image type Chart1.ImageType = ChartImageType.Flash; // Set animation theme 还有另外几种主题可选 Chart1.AnimationTheme = AnimationTheme.GrowingAndFading; // Adjust the d
阅读全文
摘要:见Dundas自带的Chart Features->Axis->Scrolling and zooming示例,首先引用下面语句using Dundas.Charting.WebControl;...若在自己的代码中若是单击按钮后显示图表,则将里面的代码写到按钮事件中private void Page_Load(object sender, System.EventArgs e){ // scrolling and zooming will force keeping of series data between callbacks. this.Chart1.ChartAreas[
阅读全文