GPUdb C++ API
Version 6.1.0.0
|
A set of input parameters for visualizeImageChart(const VisualizeImageChartRequest&) const. More...
#include <gpudb/protocol/visualize_image_chart.h>
Public Member Functions | |
VisualizeImageChartRequest () | |
Constructs a VisualizeImageChartRequest object with default parameter values. More... | |
VisualizeImageChartRequest (const std::string &tableName_, const std::string &xColumnName_, const std::string &yColumnName_, const double minX_, const double maxX_, const double minY_, const double maxY_, const int32_t width_, const int32_t height_, const std::string &bgColor_, const std::map< std::string, std::vector< std::string > > &styleOptions_, const std::map< std::string, std::string > &options_) | |
Constructs a VisualizeImageChartRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
std::string | xColumnName |
std::string | yColumnName |
double | minX |
double | maxX |
double | minY |
double | maxY |
int32_t | width |
int32_t | height |
std::string | bgColor |
std::map< std::string, std::vector< std::string > > | styleOptions |
std::map< std::string, std::string > | options |
A set of input parameters for visualizeImageChart(const VisualizeImageChartRequest&) const.
Scatter plot is the only plot type currently supported. A non-numeric column can be specified as x or y column and jitters can be added to them to avoid excessive overlapping. All color values must be in the format RRGGBB or AARRGGBB (to specify the alpha value). The image is contained in the imageData field.
Definition at line 22 of file visualize_image_chart.h.
|
inline |
Constructs a VisualizeImageChartRequest object with default parameter values.
Definition at line 29 of file visualize_image_chart.h.
|
inline |
Constructs a VisualizeImageChartRequest object with the specified parameters.
[in] | tableName_ | Name of the table containing the data to be drawn as a chart. |
[in] | xColumnName_ | Name of the column containing the data mapped to the x axis of a chart. |
[in] | yColumnName_ | Name of the column containing the data mapped to the y axis of a chart. |
[in] | minX_ | Lower bound for the x column values. For non-numeric x column, each x column item is mapped to an integral value starting from 0. |
[in] | maxX_ | Upper bound for the x column values. For non-numeric x column, each x column item is mapped to an integral value starting from 0. |
[in] | minY_ | Lower bound for the y column values. For non-numeric y column, each y column item is mapped to an integral value starting from 0. |
[in] | maxY_ | Upper bound for the y column values. For non-numeric y column, each y column item is mapped to an integral value starting from 0. |
[in] | width_ | Width of the generated image in pixels. |
[in] | height_ | Height of the generated image in pixels. |
[in] | bgColor_ | Background color of the generated image. |
[in] | styleOptions_ | Rendering style options for a chart.
|
[in] | options_ | Optional parameters. |
Definition at line 173 of file visualize_image_chart.h.
std::string gpudb::VisualizeImageChartRequest::bgColor |
Definition at line 198 of file visualize_image_chart.h.
int32_t gpudb::VisualizeImageChartRequest::height |
Definition at line 197 of file visualize_image_chart.h.
double gpudb::VisualizeImageChartRequest::maxX |
Definition at line 193 of file visualize_image_chart.h.
double gpudb::VisualizeImageChartRequest::maxY |
Definition at line 195 of file visualize_image_chart.h.
double gpudb::VisualizeImageChartRequest::minX |
Definition at line 192 of file visualize_image_chart.h.
double gpudb::VisualizeImageChartRequest::minY |
Definition at line 194 of file visualize_image_chart.h.
std::map<std::string, std::string> gpudb::VisualizeImageChartRequest::options |
Definition at line 200 of file visualize_image_chart.h.
std::map<std::string, std::vector<std::string> > gpudb::VisualizeImageChartRequest::styleOptions |
Definition at line 199 of file visualize_image_chart.h.
std::string gpudb::VisualizeImageChartRequest::tableName |
Definition at line 189 of file visualize_image_chart.h.
int32_t gpudb::VisualizeImageChartRequest::width |
Definition at line 196 of file visualize_image_chart.h.
std::string gpudb::VisualizeImageChartRequest::xColumnName |
Definition at line 190 of file visualize_image_chart.h.
std::string gpudb::VisualizeImageChartRequest::yColumnName |
Definition at line 191 of file visualize_image_chart.h.