Interface IMinValuePropertyOwner

All Known Subinterfaces:
IMinMaxValuePropertyOwner
All Known Implementing Classes:
LineChartNumericYAxis

public interface IMinValuePropertyOwner
Interface of min value property owners. Provides a set of methods corresponding to it.
Author:
Aleksey Kirillov
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Returns the minimum possible value that can be displayed on axis.
    setMinValue(double value)
    Sets the minimum possible value that can be displayed on axis.
  • Method Details

    • setMinValue

      IMinValuePropertyOwner setMinValue(double value)
      Sets the minimum possible value that can be displayed on axis. The displayed range of axis cannot include values less than the specified value. Scrolling of axis is limited accordingly. Redraws this axis and it's parent chart.
      Parameters:
      value - minimum possible value that can be displayed on axis
      Returns:
      reference to this object
    • getMinValue

      double getMinValue()
      Returns the minimum possible value that can be displayed on axis.
      Returns:
      the minimum possible value that can be displayed on axis