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

//设置

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

);
(0)

相关推荐