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 );  
  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值