Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/12 17:02:06 (12 years ago)
Author:
jkarder
Message:

#1709:

  • implemented filtering according to the legend items
  • added zoom support
Location:
trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3/GanttChart.Designer.cs

    r7967 r8107  
    3636                  | System.Windows.Forms.AnchorStyles.Left)
    3737                  | System.Windows.Forms.AnchorStyles.Right)));
     38      chartArea1.AxisX.ScaleView.SmallScrollMinSizeType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
     39      chartArea1.AxisY.ScaleView.SmallScrollMinSizeType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
     40      chartArea1.CursorX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
     41      chartArea1.CursorY.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
    3842      chartArea1.Name = "ChartArea1";
    3943      this.chart.ChartAreas.Add(chartArea1);
  • trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3/GanttChart.cs

    r7410 r8107  
    3535    public GanttChart() {
    3636      InitializeComponent();
     37      chart.CustomizeAllChartAreas();
    3738    }
    3839
Note: See TracChangeset for help on using the changeset viewer.