Class NumericLineChart

All Implemented Interfaces:
IVerticalGuidelineOwner<ILineChartVisualSet,LineVisualSetContainer>

public final class NumericLineChart extends AbstractLineChart
A chart is a GUI component based on JavaFX's XYChart class that can be used to conveniently draw numeric and statistical data. All charts are designed to be compatible with Eclipse RCP applications and SWT framework. A Numeric Line Chart is used to show linear plots or clouds of points in two-dimensional coordinates with Numeric X-axis.
Author:
Aleksey Kirillov
  • Field Details

  • Constructor Details

    • NumericLineChart

      public NumericLineChart(IChartEnvironment chartEnvironment)
      Constructs a Line Chart with a set of default parameters: no title, default begin displayed range size etc.
      Parameters:
      chartEnvironment - parent subtype of IChartEnvironment, that is a layer between the parent composite and this chart
    • NumericLineChart

      public NumericLineChart(IChartEnvironment chartEnvironment, String title)
      Constructs a Line Chart with a given title and default begin displayed range size.
      Parameters:
      chartEnvironment - parent subtype of IChartEnvironment, that is a layer between the parent composite and this chart
      title - chart title i.e. label written above the chart
    • NumericLineChart

      public NumericLineChart(IChartEnvironment chartEnvironment, double beginDisplayedRangeSize)
      Constructs a Line Chart with a given begin displayed range size and no title.
      Parameters:
      chartEnvironment - parent subtype of IChartEnvironment, that is a layer between the parent composite and this chart
      beginDisplayedRangeSize - begin displayed range size
    • NumericLineChart

      public NumericLineChart(IChartEnvironment chartEnvironment, String title, double beginDisplayedRangeSize)
      Constructs a Line Chart with a given begin displayed range size and given title.
      Parameters:
      chartEnvironment - parent subtype of IChartEnvironment, that is a layer between the parent composite and this chart
      title - chart title i.e. label written above the chart
      beginDisplayedRangeSize - begin displayed range size
  • Method Details