Class ScalesOptions

    • Constructor Detail

      • ScalesOptions

        protected ScalesOptions​(IsChart chart,
                                IsDefaultScaledOptions defaultValues)
        Builds the object storing the chart instance and default values.
        Parameters:
        chart - chart instance
        defaultValues - defaults options
      • ScalesOptions

        protected ScalesOptions​(IsChart chart,
                                IsDefaultScaledOptions defaultValues,
                                boolean createScale)
        Builds the object storing the chart instance and default values and creating a scale options if requested.
        Parameters:
        chart - chart instance
        defaultValues - defaults options
        createScale - if true creates a scale object reading the configuration otherwise it leaves the scale instance to null to allow to be set later.
    • Method Detail

      • getScales

        public Scales getScales()
        Returns the scales element.
        Returns:
        the scales
      • getAxisById

        protected final Axis getAxisById​(int id)
        Description copied from class: ConfigurationOptions
        Returns the axis by the unique CHARBA id of scale or null if not axis.
        Overrides:
        getAxisById in class ConfigurationOptions
        Parameters:
        id - the unique CHARBA id of scale
        Returns:
        the axis or null if not axis.
      • setConfiguration

        protected final void setConfiguration​(T configuration)
        Parameters:
        configuration - the configuration to set
      • getConfiguration

        protected final T getConfiguration()
        Returns the configuration element.
        Returns:
        the configuration element.
      • merge

        public final void merge​(NativeObjectContainer source,
                                String property)
        Merge a native object in the this one with a specific property name.
        This is used by plugins implementation (native java script ones) when they are not using the standard way to add plugin configuration in the options of chart.
        Parameters:
        source - native object container to add
        property - property name
      • toJSON

        public final String toJSON()
        Returns the JSON representation of the object.
        Returns:
        the JSON representation of the object.
      • loadNativeObject

        public final ChartEnvelop<NativeObject> loadNativeObject​(ChartEnvelop<NativeObject> envelop)
        Returns the native object instance inside an envelop.
        It can be called only from org.pepstock.charba.client package.
        Parameters:
        envelop - envelop instance which will contain the native object
        Returns:
        the envelop, passed as argument, loaded with the native object
      • getChart

        public final IsChart getChart()
        Returns the chart instance
        Returns:
        the chart