导航

上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 35 下一页

2011年4月6日

摘要: In One of my Project,I have two Zedgraph in the one Window Form.I am loading data in the Graph,for both zedGraph ,Making AutoScroll is True.if i move Left or Right the Horizontal scrollBar of the First Graph,then the Graph of the First is moving on the move of Fist Horizontal ScrollBar move.Now i wa 阅读全文

posted @ 2011-04-06 22:04 beeone 阅读(783) 评论(0) 推荐(0) 编辑

摘要: [edit] Sample Code in C# // Call this method from the Form_Load method, passing your ZedGraphControl instancepublic void CreateChart( ZedGraphControl zgc ){ GraphPane myPane = zgc.GraphPane; // Set the titles and axis labels myPane.Title.Text = "Demonstration of Multi Y Graph"; myPane.XAxi 阅读全文

posted @ 2011-04-06 21:53 beeone 阅读(3481) 评论(0) 推荐(1) 编辑

摘要: 作者:dreamlinerEmail:jupiter@yeah.net2008-5-20介绍ZedGraph是一个功能强大图形控件,可以根据任意数据集创建2D曲线,bar,和pie图,同时我们既可以Windows Form中,也可以在ASP.NET Web Form中使用它。ZedGraph具有高度的灵活性,我们几乎可以定制图形的每个方面,同时又为所有的特性提供了默认值,因此可以快速上手。ZedGraph与.NET 2.0和Visual Studio 2005兼容。在本文中我们介绍如何在Visual Studio 2005中使用UpdatePanel,ZedGraph控件以及Web服务技术开发 阅读全文

posted @ 2011-04-06 21:08 beeone 阅读(596) 评论(0) 推荐(1) 编辑

摘要: 第九节MasterSampleDemo.cs介绍 最近一直挺忙的,都没时间写博客了,好在这是基础篇的最后一篇了,我也可以歇歇了,关于其它的深入章节我会在以后的时间补上的。先来看看这一节的示图和源代码吧。using System;using System.Drawing;using System.Collections; using ZedGraph; namespace ZedGraph.Demo{ ///<summary> /// Summary description for SimpleDemo. ///</summary> public class Master 阅读全文

posted @ 2011-04-06 01:02 beeone 阅读(2109) 评论(0) 推荐(0) 编辑

摘要: 第八节PieSampleDemo.cs介绍 这节我把饼形图粗略的介绍一下,如下图。using System;using System.Drawing;using System.Collections; using ZedGraph; namespace ZedGraph.Demo{ ///<summary> /// Summary description for SimpleDemo. ///</summary> public class PieSampleDemo : DemoBase { public PieSampleDemo() : base( "Co 阅读全文

posted @ 2011-04-06 01:00 beeone 阅读(669) 评论(0) 推荐(0) 编辑

摘要: 第六、七节HorizontalBarSampleDemo.cs和StackedBarSampleDemo.cs介绍 这两节与第五节相比,并没有本质上的区别,所以这里只给出相应的代码、示例图和必要的说明。using System;using System.Drawing;using System.Collections; using ZedGraph; namespace ZedGraph.Demo{ ///<summary> /// Summary description for SimpleDemo. ///</summary> public class Horizo 阅读全文

posted @ 2011-04-06 00:58 beeone 阅读(1090) 评论(0) 推荐(0) 编辑

摘要: 第二、三行代码的意思是设定X轴的坐标以文本方式显示,文本内容来自string[] labels。 // Fill the axis area with a gradientmyPane.AxisFill = new Fill( Color.White,Color.FromArgb( 255, 255, 166), 90F );// Fill the pane area with a solid colormyPane.PaneFill = new Fill( Color.FromArgb( 250, 250, 255) );最后两句一个是设定Pane中轴的背景颜色,以90度的角度从白到淡黄的渐 阅读全文

posted @ 2011-04-06 00:52 beeone 阅读(1993) 评论(0) 推荐(0) 编辑

摘要: 第三节、第四节DateAxisSampleDemo.cs和TextAxisSampleDemo.cs介绍 由于这两个例子很简单也很相似,所以决定还是放到一起来写。按照惯例还是先给出代码和图示。代码如下:DateAxisSampleDemo:using System;using System.Drawing;using System.Collections; using ZedGraph; namespace ZedGraph.Demo{ ///<summary> /// Summary description for SimpleDemo. ///</summary> 阅读全文

posted @ 2011-04-06 00:49 beeone 阅读(877) 评论(0) 推荐(0) 编辑

摘要: 第二节:ModInitialSampleDemo.cs介绍 为了讲解方便,我先附上源代码和效果图。 代码如下:using System;using System.Drawing;using System.Collections; using ZedGraph; namespace ZedGraph.Demo{ ///<summary> /// Summary description for SimpleDemo. ///</summary> public class ModInitialSampleDemo : DemoBase { public ModInitialS 阅读全文

posted @ 2011-04-06 00:46 beeone 阅读(1378) 评论(0) 推荐(0) 编辑

摘要: ZedGraph 总论 ZedGraph 是一个开源的.NET图表类库, 并且全部代码都是用C#开发的。它可以利用任意的数据集合创建2D的线性和柱形图表。 ZedGraph的类库具有很高的灵活性。几乎图表的每个层面都可以被用户修改。同时,为了保证类库的易用性,所有的图表属性都提供了缺省值。类库中包含的代码可以根据被划分的数据来选择适应的比例范围和步长、尺寸。 ZedGraph继承了Framework中的UserControl接口,所以允许用户在VS的IDE环境中进行拖放操作。增加了对其它语言的访问接口支持,如C++,VB。 关于ZedGraph的版权问题请见 http://zedgraph.o 阅读全文

posted @ 2011-04-06 00:40 beeone 阅读(714) 评论(0) 推荐(0) 编辑

上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 35 下一页