Class VisualizeImageChartRequest.StyleOptions

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String CB_DELIMITER
      A character or string which separates per-class values in a class-break style option string.
      static String CB_POINTCOLORS
      Point color class break information consisting of three entries: class-break attribute, class-break values/ranges, and point color values.
      static String CB_POINTSHAPES
      Point shape class break information consisting of three entries: class-break attribute, class-break values/ranges, and point shape names.
      static String CB_POINTSIZES
      Point size class break information consisting of three entries: class-break attribute, class-break values/ranges, and point size values.
      static String CIRCLE  
      static String DIAMOND  
      static String HOLLOWCIRCLE  
      static String HOLLOWDIAMOND  
      static String HOLLOWSQUARE  
      static String JITTER_X
      Amplitude of horizontal jitter applied to non-numeric x column values.
      static String JITTER_Y
      Amplitude of vertical jitter applied to non-numeric y column values.
      static String LOG
      A base-10 log scale is applied to the y axis.
      static String MIN_MAX_SCALED
      If this options is set to "false", this endpoint expects request's min/max values are not yet scaled.
      static String NONE
      No scale is applied to the y axis.
      static String PLOT_ALL
      If this options is set to "true", all non-numeric column values are plotted ignoring min_x, max_x, min_y and max_y parameters.
      static String POINTCOLOR
      The color of points in the plot represented as a hexadecimal number.
      static String POINTSHAPE
      The shape of points in the plot.
      static String POINTSIZE
      The size of points in the plot represented as number of pixels.
      static String SCALE_TYPE_X
      Type of x axis scale.
      static String SCALE_TYPE_Y
      Type of y axis scale.
      static String SQUARE  
      static String X_ORDER_BY
      An expression or aggregate expression by which non-numeric x column values are sorted, e.g. "avg(price) descending".
      static String Y_ORDER_BY
      An expression or aggregate expression by which non-numeric y column values are sorted, e.g. "avg(price)", which defaults to "avg(price) ascending".
    • Field Detail

      • POINTCOLOR

        public static final String POINTCOLOR
        The color of points in the plot represented as a hexadecimal number. The default value is '0000FF'.
        See Also:
        Constant Field Values
      • POINTSIZE

        public static final String POINTSIZE
        The size of points in the plot represented as number of pixels. The default value is '3'.
        See Also:
        Constant Field Values
      • CB_POINTCOLORS

        public static final String CB_POINTCOLORS
        Point color class break information consisting of three entries: class-break attribute, class-break values/ranges, and point color values. This option overrides the pointcolor option if both are provided. Class-break ranges are represented in the form of "min:max". Class-break values/ranges and point color values are separated by cb_delimiter, e.g. {"price", "20:30;30:40;40:50", "0xFF0000;0x00FF00;0x0000FF"}.
        See Also:
        Constant Field Values
      • CB_POINTSIZES

        public static final String CB_POINTSIZES
        Point size class break information consisting of three entries: class-break attribute, class-break values/ranges, and point size values. This option overrides the pointsize option if both are provided. Class-break ranges are represented in the form of "min:max". Class-break values/ranges and point size values are separated by cb_delimiter, e.g. {"states", "NY;TX;CA", "3;5;7"}.
        See Also:
        Constant Field Values
      • CB_POINTSHAPES

        public static final String CB_POINTSHAPES
        Point shape class break information consisting of three entries: class-break attribute, class-break values/ranges, and point shape names. This option overrides the pointshape option if both are provided. Class-break ranges are represented in the form of "min:max". Class-break values/ranges and point shape names are separated by cb_delimiter, e.g. {"states", "NY;TX;CA", "circle;square;diamond"}.
        See Also:
        Constant Field Values
      • CB_DELIMITER

        public static final String CB_DELIMITER
        A character or string which separates per-class values in a class-break style option string. The default value is ';'.
        See Also:
        Constant Field Values
      • X_ORDER_BY

        public static final String X_ORDER_BY
        An expression or aggregate expression by which non-numeric x column values are sorted, e.g. "avg(price) descending".
        See Also:
        Constant Field Values
      • Y_ORDER_BY

        public static final String Y_ORDER_BY
        An expression or aggregate expression by which non-numeric y column values are sorted, e.g. "avg(price)", which defaults to "avg(price) ascending".
        See Also:
        Constant Field Values
      • SCALE_TYPE_X

        public static final String SCALE_TYPE_X
        Type of x axis scale. Supported values:
        • NONE: No scale is applied to the x axis.
        • LOG: A base-10 log scale is applied to the x axis.
        The default value is NONE.
        See Also:
        Constant Field Values
      • SCALE_TYPE_Y

        public static final String SCALE_TYPE_Y
        Type of y axis scale. Supported values:
        • NONE: No scale is applied to the y axis.
        • LOG: A base-10 log scale is applied to the y axis.
        The default value is NONE.
        See Also:
        Constant Field Values
      • MIN_MAX_SCALED

        public static final String MIN_MAX_SCALED
        If this options is set to "false", this endpoint expects request's min/max values are not yet scaled. They will be scaled according to scale_type_x or scale_type_y for response. If this options is set to "true", this endpoint expects request's min/max values are already scaled according to scale_type_x/scale_type_y. Response's min/max values will be equal to request's min/max values. The default value is 'false'.
        See Also:
        Constant Field Values
      • JITTER_X

        public static final String JITTER_X
        Amplitude of horizontal jitter applied to non-numeric x column values. The default value is '0.0'.
        See Also:
        Constant Field Values
      • JITTER_Y

        public static final String JITTER_Y
        Amplitude of vertical jitter applied to non-numeric y column values. The default value is '0.0'.
        See Also:
        Constant Field Values
      • PLOT_ALL

        public static final String PLOT_ALL
        If this options is set to "true", all non-numeric column values are plotted ignoring min_x, max_x, min_y and max_y parameters. The default value is 'false'.
        See Also:
        Constant Field Values