C# 有“未能找到类型或命名空间名称“Chart”(是否缺少 using 指令或程序集引用?)”,我想问下该添加什么呢

高考资讯2023-01-27 00:39:19admin2

对,需添加引用,具体看Chart是哪个命名空间。

Chart控件,怎么把Y轴设置成百分比

这次所有属性设置都用代码(就当整理便于以后查询)。
在窗体放置一个Chart控件,未做任何设置;然后编写代码:
//设置

chart2.Legends[
0].Enabled = false;//不显示图例

chart2.ChartAreas[
0].BackColor = Color.White;//设置背景为白色

chart2.ChartAreas[
0].Area3DStyle.Enable3D = true;//设置3D效果

chart2.ChartAreas[
0].Area3DStyle.PointDepth =
chart2.ChartAreas[0].Area3DStyle.PointGapDepth = 50;//设置一下深度,看起来舒服点……

chart2.ChartAreas[
0].Area3DStyle.WallWidth = 0;//设置墙的宽度为0;

chart2.ChartAreas[
0].AxisY.LabelStyle.Format = 0%;//格式化,为了显示百分号

chart2.ChartAreas[
0].AxisY.Interval = 0.05;//设置刻度间隔为5%

chart2.ChartAreas[
0].AxisX.MajorGrid.Enabled =
chart2.ChartAreas[0].AxisY.MajorGrid.Enabled = false;//不显示网格线

chart2.ChartAreas[
0].AxisX.Minimum = 0.5;//设置最小值,为了让第一个柱紧挨坐标轴

chart2.Series[
0].Label = #VAL{P};//设置标签文本 (在设计期通过属性窗口编辑更直观)

chart2.Series[
0].IsValueShownAsLabel = true;//显示标签

chart2.Series[
0].CustomProperties = DrawingStyle=Cylinder, PointWidth=1;//设置为圆柱形 (在设计期通过属性窗口编辑更直观)

chart2.Series[
0].Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;//设置调色板

//数据

chart2.Series[
0].Points.AddXY(<10,0.201);
chart2.Series[0].Points.AddXY(10~20, 0.395);
chart2.Series[0].Points.AddXY(20~30, 0.173);
chart2.Series[0].Points.AddXY(30~40, 0.136);
chart2.Series[0].Points.AddXY(40~50, 0.059);
chart2.Series[0].Points.AddXY(50~60, 0.015);
chart2.Series[0].Points.AddXY(>60, 0.022
);

相关推荐

猜你喜欢

大家正在看

换一换