• 3D column cylinder


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

            // 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;

  • 相关阅读:
    使用java实现面向对象 第一章
    深入.NET平台和C#编程笔记 第九章 文件操作
    MySQL_第七章
    MySQL_第八章
    MySQL_第五章
    MySQL_第四章
    MySQL_第三章
    MySQL_第二章
    MySQL_第一章
    S2_OOP第二章
  • 原文地址:https://www.cnblogs.com/greencolor/p/1726788.html
Copyright © 2020-2023  润新知