Class BubbleChart

    • Constructor Detail

      • BubbleChart

        public BubbleChart​(int width,
                           int height)
        Constructor - the default Chart Theme will be used (XChartTheme)
        Parameters:
        width -
        height -
      • BubbleChart

        public BubbleChart​(int width,
                           int height,
                           Theme theme)
        Constructor
        Parameters:
        width -
        height -
        theme - - pass in a instance of Theme class, probably a custom Theme.
      • BubbleChart

        public BubbleChart​(int width,
                           int height,
                           Styler.ChartTheme chartTheme)
        Constructor
        Parameters:
        width -
        height -
        chartTheme - - pass in the desired ChartTheme enum
      • BubbleChart

        public BubbleChart​(BubbleChartBuilder chartBuilder)
        Constructor
        Parameters:
        chartBuilder -
    • Method Detail

      • addSeries

        public BubbleSeries addSeries​(java.lang.String seriesName,
                                      java.util.List<? extends java.lang.Number> xData,
                                      java.util.List<? extends java.lang.Number> yData,
                                      java.util.List<? extends java.lang.Number> bubbleData)
        Add a series for a Bubble type chart using using double arrays
        Parameters:
        seriesName -
        xData - the X-Axis data
        yData - the Y-Axis data
        bubbleData - the bubble data
        Returns:
        A Series object that you can set properties on
      • addSeries

        public BubbleSeries addSeries​(java.lang.String seriesName,
                                      double[] xData,
                                      double[] yData,
                                      double[] bubbleData)
        Add a series for a Bubble type chart using using Lists
        Parameters:
        seriesName -
        xData - the X-Axis data
        yData - the Y-Axis data
        bubbleData - the bubble data
        Returns:
      • updateBubbleSeries

        public BubbleSeries updateBubbleSeries​(java.lang.String seriesName,
                                               java.util.List<?> newXData,
                                               java.util.List<? extends java.lang.Number> newYData,
                                               java.util.List<? extends java.lang.Number> newBubbleData)
        Update a series by updating the X-Axis, Y-Axis and bubble data
        Parameters:
        seriesName -
        newXData - - set null to be automatically generated as a list of increasing Integers starting from 1 and ending at the size of the new Y-Axis data list.
        newYData -
        newBubbleData - - set null if there are no error bars
        Returns:
      • updateBubbleSeries

        public BubbleSeries updateBubbleSeries​(java.lang.String seriesName,
                                               double[] newXData,
                                               double[] newYData,
                                               double[] newBubbleData)
        Update a series by updating the X-Axis, Y-Axis and bubble data
        Parameters:
        seriesName -
        newXData - - set null to be automatically generated as a list of increasing Integers starting from 1 and ending at the size of the new Y-Axis data list.
        newYData -
        newBubbleData - - set null if there are no error bars
        Returns:
      • sanityCheck

        private void sanityCheck​(java.lang.String seriesName,
                                 double[] xData,
                                 double[] yData,
                                 double[] bubbleData)
      • setSeriesStyles

        private void setSeriesStyles()
        set the series color based on theme