我想在C#中自定义图表,并向其中添加两个按钮以进行放大和缩小。我开始在Visual Studio工具箱中添加2个按钮,遇到一个问题,一旦我向项目中添加了新控件,我就失去了ChartAreas,Legends,Series等属性中图表的主要功能。
我的代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Forms.DataVisualization.Charting;
namespace DemoCustomGraph
{
public partial class customGraph : UserControl
{
public customGraph()
{
InitializeComponent();
}
private void btnScrollOnOff_Click(object sender, EventArgs e)
{
if(chart1.ChartAreas["ChartArea1"].CursorX.AutoScroll == false)
{
chart1.ChartAreas["ChartArea1"].CursorX.AutoScroll = true;
btnScrollOnOff.Text = "Scroll On";
}
else
{
chart1.ChartAreas["ChartArea1"].CursorX.AutoScroll = false;
btnScrollOnOff.Text = "Scroll Off";
}
}
}
}
我在做什么错了?