zoukankan      html  css  js  c++  java
  • 3D BarChart

            using ZqzWebChart.Charting;
            Chart1.Series["Series1"].ChartType = SeriesChartType.Bar;
            Chart1.Series["Series2"].ChartType = SeriesChartType.Bar;
            Chart1.Series["Series3"].ChartType = SeriesChartType.Bar;
            Chart1.Titles[0].Text = "3D Bar Chart";

            // Show/Hide X axis end labels
            Chart1.ChartAreas["ChartArea1"].AxisX.LabelStyle.IsEndLabelVisible = true;

            // Set point width of the series
            Chart1.Series["Series1"]["PointWidth"] = "0.6";
            Chart1.Series["Series2"]["PointWidth"] = "0.6";
            Chart1.Series["Series3"]["PointWidth"] = "0.6";

            Chart1.ChartAreas["ChartArea1"].Area3DStyle.Enable3D = true;
            Chart1.ChartAreas["ChartArea1"].Area3DStyle.IsRightAngleAxes = true;
            Chart1.ChartAreas["ChartArea1"].Area3DStyle.IsClustered = true;
            Chart1.ChartAreas["ChartArea1"].Area3DStyle.Inclination = 30;       
            Chart1.ChartAreas["ChartArea1"].Area3DStyle.Rotation = 30;

  • 相关阅读:
    检测后缀表达式的合法性
    对表达式进行空白符预处理
    字符串替换
    中缀表达式的计算
    Linux shell编程
    Linux常用shell
    [转载]shell脚本编写规范
    [转载]Linux文件类型
    Linux的进程
    Linux进入命令行模式
  • 原文地址:https://www.cnblogs.com/greencolor/p/1726782.html
Copyright © 2011-2022 走看看