Package org.knowm.xchart.internal.series
Class MarkerSeries
- java.lang.Object
-
- org.knowm.xchart.internal.series.Series
-
- org.knowm.xchart.internal.series.AxesChartSeries
-
- org.knowm.xchart.internal.series.MarkerSeries
-
- Direct Known Subclasses:
AxesChartSeriesCategory,AxesChartSeriesNumericalNoErrorBars,OHLCSeries,RadarSeries
public abstract class MarkerSeries extends AxesChartSeries
A Series containing X and Y data to be plotted on a Chart with X and Y Axes, contains series markers and error bars.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.knowm.xchart.internal.series.Series
Series.DataType
-
-
Field Summary
Fields Modifier and Type Field Description private MarkermarkerMarkerprivate java.awt.ColormarkerColorMarker Color-
Fields inherited from class org.knowm.xchart.internal.series.AxesChartSeries
xAxisDataType, xMax, xMin, yAxisType, yMax, yMin
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedMarkerSeries(java.lang.String name, Series.DataType xAxisDataType)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MarkergetMarker()java.awt.ColorgetMarkerColor()MarkerSeriessetMarker(Marker marker)Sets the marker for the seriesMarkerSeriessetMarkerColor(java.awt.Color color)Sets the marker color for the series-
Methods inherited from class org.knowm.xchart.internal.series.AxesChartSeries
calculateMinMax, getLineColor, getLineStyle, getLineWidth, getxAxisDataType, getXMax, getXMin, getyAxisDataType, getYMax, getYMin, setLineColor, setLineStyle, setLineWidth
-
Methods inherited from class org.knowm.xchart.internal.series.Series
getFillColor, getLabel, getLegendRenderType, getName, getYAxisDecimalPattern, getYAxisGroup, isEnabled, isShowInLegend, setEnabled, setFillColor, setLabel, setShowInLegend, setYAxisDecimalPattern, setYAxisGroup
-
-
-
-
Field Detail
-
marker
private Marker marker
Marker
-
markerColor
private java.awt.Color markerColor
Marker Color
-
-
Constructor Detail
-
MarkerSeries
protected MarkerSeries(java.lang.String name, Series.DataType xAxisDataType)Constructor- Parameters:
name-xAxisDataType-
-
-
Method Detail
-
getMarker
public Marker getMarker()
-
setMarker
public MarkerSeries setMarker(Marker marker)
Sets the marker for the series- Parameters:
marker-
-
getMarkerColor
public java.awt.Color getMarkerColor()
-
setMarkerColor
public MarkerSeries setMarkerColor(java.awt.Color color)
Sets the marker color for the series- Parameters:
color-
-
-