-
- All Known Implementing Classes:
AreaChartFX,BarChartFX,DensityChartFX,HistogramChartFX,LineChartFX,ScatterChartFX
public interface PluggableDefines the needed behavior for a plot chart to be plugged withPlugins.- Author:
- claudio.rosati@esss.se
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChartgetChart()ObservableList<Legend.LegendItem>getLegendItems()ObservableList<Node>getPlotChildren()ObservableList<Plugin>getPlugins()booleanisNotShownInLegend(String seriesName)Returns whether the series with the given name is displayed in chartLegendor not.voidsetNotShownInLegend(String seriesName)Specifies a series to not be shown in chartLegend.
-
-
-
Method Detail
-
getChart
Chart getChart()
- Returns:
- The "pluggable" chart.
-
getLegendItems
ObservableList<Legend.LegendItem> getLegendItems()
- Returns:
- The an
ObservableListofLegend.LegendItemdisplayed in theLegendof the pluggable chart.
-
getPlotChildren
ObservableList<Node> getPlotChildren()
- Returns:
- The pluggable chart's plot children list.
-
getPlugins
ObservableList<Plugin> getPlugins()
- Returns:
- A non-
nulllist of plugins added to the chart.
-
isNotShownInLegend
boolean isNotShownInLegend(String seriesName)
Returns whether the series with the given name is displayed in chartLegendor not.- Parameters:
seriesName- The name of the series to be checked.- Returns:
trueif the series with the given name is not shown in chartLegend.
-
-