Interface IMaxValuePropertyOwner
- All Known Subinterfaces:
IMinMaxValuePropertyOwner
- All Known Implementing Classes:
BarChartNumericYAxis,LineChartNumericYAxis
public interface IMaxValuePropertyOwner
Interface of max value property owners. Provides a set of methods
corresponding to it.
- Author:
- Aleksey Kirillov
-
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns the maximum possible value that can be displayed on axis.setMaxValue(double value) Sets the maximum possible value that can be displayed on axis.
-
Method Details
-
setMaxValue
Sets the maximum possible value that can be displayed on axis. The displayed range of axis cannot include values more than the specified value. Scrolling of axis is limited accordingly. Redraws this axis and it's parent chart.- Parameters:
value- maximum possible value that can be displayed on axis- Returns:
- reference to this object
-
getMaxValue
double getMaxValue()Returns the maximum possible value that can be displayed on axis.- Returns:
- the maximum possible value that can be displayed on axis
-