Interface IMinMaxValuePropertyOwner
- All Superinterfaces:
IMaxValuePropertyOwner,IMinValuePropertyOwner
- All Known Implementing Classes:
LineChartNumericYAxis
Interface of min/max values property owners. Provides a set of methods
corresponding to it.
- Author:
- Aleksey Kirillov
-
Method Summary
Modifier and TypeMethodDescriptionsetValueLimits(double minValue, double maxValue) Convenience method, can be used instead of calling two methods setMinValue and setMaxValue.Methods inherited from interface com.amalgamasimulation.charts.axes.IMaxValuePropertyOwner
getMaxValue, setMaxValueMethods inherited from interface com.amalgamasimulation.charts.axes.IMinValuePropertyOwner
getMinValue, setMinValue
-
Method Details
-
setValueLimits
Convenience method, can be used instead of calling two methods setMinValue and setMaxValue. Redraws this axis and it's parent chart.- Parameters:
minValue- minimum possible value that can be displayed on axismaxValue- maximum possible value that can be displayed on axis- Returns:
- reference to this object
-