java.lang.Object
omix.lang.chart.util.ChartStyleElement
omix.lang.chart.util.ChartStyle
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CategoryChartStyle
,PieChartStyle
,XYChartStyle
public abstract class ChartStyle extends ChartStyleElement
This class represents the style of a chart.
- Since:
- Omix 1.8.6
- Author:
- Dr. Peter Droste
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description ChartStyle()
-
Method Summary
Modifier and Type Method Description abstract ChartStyle
clone()
Brush
getBackground()
double
getBottomInset()
double
getBottomPadding()
ColorScheme
getColorScheme()
double
getLeftInset()
double
getLeftPadding()
double
getRightInset()
double
getRightPadding()
double
getTopInset()
double
getTopPadding()
boolean
isShowNoDataWarning()
void
set(ChartStyle style)
void
setBackground(Brush background)
void
setBottomInset(double bottomInset)
void
setBottomPadding(double bottomPadding)
void
setColorScheme(ColorScheme colorStyle)
void
setLeftInset(double leftInset)
void
setLeftPadding(double leftPadding)
void
setRightInset(double rightInset)
void
setRightPadding(double rightPadding)
void
setShowNoDataWarning(boolean showNoDataWarning)
void
setTopInset(double topInset)
void
setTopPadding(double topPadding)
Methods inherited from class omix.lang.chart.util.ChartStyleElement
addPropertyChangeListener, propertyChange, removePropertyChangeListener
-
Constructor Details
-
ChartStyle
public ChartStyle()
-
-
Method Details
-
set
-
clone
- Specified by:
clone
in classChartStyleElement
-
getBackground
-
setBackground
-
getColorScheme
-
setColorScheme
-
isShowNoDataWarning
public boolean isShowNoDataWarning()- Returns:
- the showNoDataWarning
-
setShowNoDataWarning
public void setShowNoDataWarning(boolean showNoDataWarning)- Parameters:
showNoDataWarning
- the showNoDataWarning to set
-
getTopInset
public double getTopInset() -
setTopInset
public void setTopInset(double topInset) -
getBottomInset
public double getBottomInset() -
setBottomInset
public void setBottomInset(double bottomInset) -
getLeftInset
public double getLeftInset() -
setLeftInset
public void setLeftInset(double leftInset) -
getRightInset
public double getRightInset() -
setRightInset
public void setRightInset(double rightInset) -
getTopPadding
public double getTopPadding() -
setTopPadding
public void setTopPadding(double topPadding) -
getBottomPadding
public double getBottomPadding() -
setBottomPadding
public void setBottomPadding(double bottomPadding) -
getLeftPadding
public double getLeftPadding() -
setLeftPadding
public void setLeftPadding(double leftPadding) -
getRightPadding
public double getRightPadding() -
setRightPadding
public void setRightPadding(double rightPadding)
-