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 GXGJStatistics : RWWithChartBar { public GXGJStatistics() : base() { this.ChartTitle = "按管线的管径统计"; } protected override string SetXAxisName() { return "管径"; } protected override string SetYAxisName() { return "管线 数量(段) 长度(米)"; } } }