GXDZMSStatistics.cs 758 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using WWPipeLine.MapBasic.Results;
  11. namespace WWPipeLine.MapTools.Results.Statistics
  12. {
  13. public partial class GXDZMSStatistics : RWWithChartBar
  14. {
  15. public GXDZMSStatistics() : base()
  16. {
  17. this.Text = "";
  18. this.ChartTitle = "按管线的所在位置统计";
  19. }
  20. protected override string SetXAxisName()
  21. {
  22. return "所在位置";
  23. }
  24. protected override string SetYAxisName()
  25. {
  26. return "管线 数量(段) 长度(米)";
  27. }
  28. }
  29. }