Class GraphDataDomain

java.lang.Object
com.persequor.extension.frontend.GraphDataDomain

public class GraphDataDomain extends Object
Represents the domain of an axis in the GraphAxisProperties component. The usage of this class, assumes that the type of axis is set to `number`.

The class contains two fields:

  • `dataMin` - inclusive limit for lower bound.
  • `dataMax` - inclusive limit for the higher bound.
Each field can be assigned the following values:
  • `dataMin` - the lowest value from the data set.
  • `dataMax` - the highest value from the data set.
  • `auto` - the comprehensible will be calculated.
  • `any double` - the constant number value.
The default bound is `[ 0, 'auto' ]` which takes 0 as lower bound and perform calculation for the higher bound.