Class LineOptions

    • Constructor Detail

      • LineOptions

        public LineOptions​(IsChart chart,
                           IsDefaultScaledOptions defaultValues)
        Builds the object storing the chart instance and default values.
        Parameters:
        chart - chart instance
        defaultValues - defaults options of line chart
    • Method Detail

      • getDecimation

        public Decimation getDecimation()
        Returns the decimation plugin element.
        Returns:
        the decimation plugin element
      • getSegment

        public Segment getSegment()
        Returns the segment element.
        Returns:
        the segment element
      • setIndexAxis

        public void setIndexAxis​(IndexAxis indexAxis)
        Sets the base axis for the dataset.
        Use IndexAxis.Y for vertical line.
        Parameters:
        indexAxis - the base axis for the dataset
      • getIndexAxis

        public IndexAxis getIndexAxis()
        Returns the base axis for the dataset.
        Returns:
        the base axis for the dataset
      • setShowLine

        public default void setShowLine​(boolean showLine)
        If false, the lines between points are not drawn.
        Parameters:
        showLine - if false, the lines between points are not drawn.
      • isShowLine

        public default boolean isShowLine()
        If false, the lines between points are not drawn.
        Returns:
        if false, the lines between points are not drawn.
      • setSpanGaps

        public default void setSpanGaps​(boolean spanGaps)
        If false, Double.NaN data causes a break in the line.
        Parameters:
        spanGaps - If false, Double.NaN data causes a break in the line.
      • isSpanGaps

        public default boolean isSpanGaps()
        If false, Double.NaN data causes a break in the line.
        Returns:
        If false, Double.NaN data causes a break in the line.
      • 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