12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using WWPipeLine.MapBasic.Results;
- namespace WWPipeLine.MapTools.Results.Statistics
- {
- public partial class GXDZMSStatistics : RWWithChartBar
- {
- public GXDZMSStatistics() : base()
- {
- this.Text = "";
- this.ChartTitle = "按管线的所在位置统计";
- }
- protected override string SetXAxisName()
- {
- return "所在位置";
- }
- protected override string SetYAxisName()
- {
- return "管线 数量(段) 长度(米)";
- }
- }
- }
|