首页 > 慧问 > 频道

如何禁止用户删除或编辑StimulReports.Net报表的数据源?[Stimulsoft Reports Designer.Silverlight]

发表于2019-05-10 回复:0 查看:2165  |  
如何禁止用户删除或编辑StimulReports.Net报表的数据源?
1个回答
  • 1970-01-01 08:00
    TeeChart提供了一个很强大的动画工具供用户使用,如果你是想要让数据每隔一段时间出来一点,产生一个动画的效果,可以参照以下代码:
     Steema.TeeChart.Tools.SeriesAnimation animation_tool = new Steema.TeeChart.Tools.SeriesAnimation(tChart1.Chart);
    
                // 设置不从序列的最小值开始动画
                animation_tool.StartAtMin = true;
    
                // 设置动画起始值
                animation_tool.StartValue = tChart1.Axes.Left.Maximum;
    
                // 设置动画的刷新频率
                animation_tool.Steps = 15;
    
                // 设置动画每次绘制的点个数
                animation_tool.DrawEvery = 1;
    
                // 将序列和动画工具绑定
                animation_tool.Series = tChart1.Series[0];
    
                animation_tool.Execute();
    
    1
    回复 举报
回复

登录 慧都网发表评论

扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP