zedgraph 控件画图
请问一下,我如何才能在zedgraph控件中画一条曲线,或者是三角形之类的,同时它的标题该如何修改,我看过了,它没有TEXT,或者是TITLE这一属性。请举一个最简单的例...
请问一下,我如何才能在zedgraph控件中画一条曲线,或者是三角形之类的,同时它的标题该如何修改,我看过了,它没有TEXT,或者是TITLE这一属性。
请举一个最简单的例子。我将不胜感激。
你的回答不见效果,同时我还想问一下,从哪里可以把X轴或者是Y的刻度改变成时间。
谢谢了 展开
请举一个最简单的例子。我将不胜感激。
你的回答不见效果,同时我还想问一下,从哪里可以把X轴或者是Y的刻度改变成时间。
谢谢了 展开
2个回答
展开全部
你看一下DateAxisSampleDemo.cs这个demo
public DateAxisSampleDemo() : base( "Code Project Date Axis Sample",
"Date Axis Sample", DemoType.Tutorial )
{
GraphPane myPane = base.GraphPane;
// Set the titles and axis labels
myPane.Title.Text = "My Test Date Graph";
myPane.XAxis.Title.Text = "Date";
myPane.YAxis.Title.Text = "My Y Axis";
// Make up some data points based on the Sine function
PointPairList list = new PointPairList();
for ( int i=0; i<36; i++ )
{
double x = (double) new XDate( 1995, 5, i+11 );
double y = Math.Sin( (double) i * Math.PI / 15.0 );
list.Add( x, y );
}
// Generate a red curve with diamond
// symbols, and "My Curve" in the legend
LineItem myCurve = myPane.AddCurve( "My Curve",
list, Color.Red, SymbolType.Diamond );
// Set the XAxis to date type
myPane.XAxis.Type = AxisType.Date;
base.ZedGraphControl.AxisChange();
}
public DateAxisSampleDemo() : base( "Code Project Date Axis Sample",
"Date Axis Sample", DemoType.Tutorial )
{
GraphPane myPane = base.GraphPane;
// Set the titles and axis labels
myPane.Title.Text = "My Test Date Graph";
myPane.XAxis.Title.Text = "Date";
myPane.YAxis.Title.Text = "My Y Axis";
// Make up some data points based on the Sine function
PointPairList list = new PointPairList();
for ( int i=0; i<36; i++ )
{
double x = (double) new XDate( 1995, 5, i+11 );
double y = Math.Sin( (double) i * Math.PI / 15.0 );
list.Add( x, y );
}
// Generate a red curve with diamond
// symbols, and "My Curve" in the legend
LineItem myCurve = myPane.AddCurve( "My Curve",
list, Color.Red, SymbolType.Diamond );
// Set the XAxis to date type
myPane.XAxis.Type = AxisType.Date;
base.ZedGraphControl.AxisChange();
}
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询