Package com.jbstrap.ui.components.charts
Class DotSeries
java.lang.Object
com.jbstrap.ui.components.charts.Series
com.jbstrap.ui.components.charts.AxesBaseSeries
com.jbstrap.ui.components.charts.DotSeries
- All Implemented Interfaces:
AdvancedMarker<DotSeries>
,ColorizedSeries<DotSeries>
public class DotSeries
extends AxesBaseSeries
implements AdvancedMarker<DotSeries>, ColorizedSeries<DotSeries>
Series object displayed on the dot chart.
- Since:
- 4.0
- Author:
- JBStrap
-
Field Summary
Fields inherited from class com.jbstrap.ui.components.charts.AxesBaseSeries
VALUE_TANGENT
Fields inherited from class com.jbstrap.ui.components.charts.Series
CATEGORY_COLUMN, COLOR_COLUMN, colorColumn, DATA_COLUMN, dataColumn, LABEL_COLUMN, labelColumn, MARKER_SIZE, MARKER_TYPE, param, parentChart
Fields inherited from interface com.jbstrap.ui.components.charts.AdvancedMarker
MARKER_FILL_COLOR, MARKER_LINE_COLOR, MARKER_LINE_WIDTH, SHOW_MARKER
Fields inherited from interface com.jbstrap.ui.components.charts.ColorizedSeries
COLOR
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic DotSeries
fromSeries
(Series series) Creates a dot series object based on an other Series object.Methods inherited from class com.jbstrap.ui.components.charts.AxesBaseSeries
isShowCategoryValueTangent, isShowSeriesValueTangent, setShowCategoryValueTangent, setShowSeriesValueTangent
Methods inherited from class com.jbstrap.ui.components.charts.Series
addData, addData, addData, addData, clear, getColorColumn, getData, getDataColumn, getLabelColumn, getMarker, getMarkerSize, getMarkerType, getParams, getTitle, getValues, isEmpty, refreshMarker, removeDataByCategory, removeDataByIndex, setColorColumn, setDataColumn, setLabelColumn, setMarkerSize, setMarkerType, setParams, setParentChart
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.jbstrap.ui.components.charts.AdvancedMarker
getMarkerFillColor, getMarkerLineColor, getMarkerLineWidth, isShowMarker, setMarkerFillColor, setMarkerLineColor, setMarkerLineWidth, setShowMarker
Methods inherited from interface com.jbstrap.ui.components.charts.ColorizedSeries
getColor, setColor
-
Constructor Details
-
DotSeries
Creates a dot chart that can be displayed on the series object.- Parameters:
title
- Series title (required)- Throws:
NullPointerException
- Thrown if the specified series name isnull
-
DotSeries
Creates a dot chart that can be displayed on the series object.- Parameters:
title
- Series title (required)dataColumn
- The name of the data column that contains the displayed series in the DataDescriptor- Throws:
NullPointerException
- Thrown if the specified axis name isnull
-
-
Method Details
-
fromSeries
Creates a dot series object based on an other Series object.- Parameters:
series
- The series object All of the specified series object’s settings are taken over by the dot series. If the specified series does not have the attributes necessary for the dot series, the dot series is created using default values.- Returns:
- The created dot series object
-