public static final class VisualizeImageChartRequest.StyleOptions extends Object
POINTCOLOR
: The color of points in the plot represented as a
hexadecimal number. The default value is '0000FF'.
POINTSIZE
: The size of points in the plot represented as number of
pixels. The default value is '3'.
POINTSHAPE
: The shape of points in the plot.
Supported values:
The default value is SQUARE
.
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"}.
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"}.
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"}.
CB_DELIMITER
: A character or string which separates per-class values in
a class-break style option string. The default value is ';'.
X_ORDER_BY
: An expression or aggregate expression by which non-numeric
x column values are sorted, e.g. "avg(price) descending".
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".
SCALE_TYPE_X
: Type of x axis scale.
Supported values:
The default value is NONE
.
SCALE_TYPE_Y
: Type of y axis scale.
Supported values:
The default value is NONE
.
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'.
JITTER_X
: Amplitude of horizontal jitter applied to non-numeric x
column values. The default value is '0.0'.
JITTER_Y
: Amplitude of vertical jitter applied to non-numeric y column
values. The default value is '0.0'.
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'.
styleOptions
.Modifier and Type | Field and 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.
|
static String |
Y_ORDER_BY
An expression or aggregate expression by which non-numeric y column
values are sorted, e.g.
|
public static final String POINTCOLOR
public static final String POINTSIZE
public static final String POINTSHAPE
SQUARE
.public static final String NONE
public static final String CIRCLE
public static final String SQUARE
public static final String DIAMOND
public static final String HOLLOWCIRCLE
public static final String HOLLOWSQUARE
public static final String HOLLOWDIAMOND
public static final String CB_POINTCOLORS
public static final String CB_POINTSIZES
public static final String CB_POINTSHAPES
public static final String CB_DELIMITER
public static final String X_ORDER_BY
public static final String Y_ORDER_BY
public static final String SCALE_TYPE_X
NONE
.public static final String LOG
public static final String SCALE_TYPE_Y
NONE
.public static final String MIN_MAX_SCALED
public static final String JITTER_X
public static final String JITTER_Y
public static final String PLOT_ALL
Copyright © 2020. All rights reserved.