zoukankan      html  css  js  c++  java
  • (摘)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;//设置最小值,为了让第一个柱紧挨坐标轴
    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
    );
  • 相关阅读:
    盒模型(框模型)
    边框
    尺寸及溢出处理
    HTML标签分类
    尺寸单位和颜色的取值
    选择器的优先级
    C++ 代码模板
    LC 425. Word Squares 【lock,hard】
    LC 660. Remove 9 【lock, hard】
    LC 759. Employee Free Time 【lock, hard】
  • 原文地址:https://www.cnblogs.com/newmanzhang/p/3454429.html
Copyright © 2011-2022 走看看