public class ChartInfo
extends java.lang.Object
Constructor and Description |
---|
ChartInfo()
Constructs the definition of a empty chart.
|
ChartInfo(java.lang.String category,
java.lang.String series)
Constructs the definition of a chart.
|
ChartInfo(java.lang.String category,
java.lang.String series,
boolean isBVData)
Constructs the definition of a chart.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCategory()
Gets the mapping name of the field that is shown as the Category of the chart.
|
GroupInfo |
getCategoryGroupInfo()
Gets the definition of the special group options.
|
ChartLabelInfo |
getChartLabelInfo()
Gets the definitions of the chart label .
|
ChartLegendInfo |
getChartLegendInfo()
Gets the definitions of the chart legend.
|
java.lang.String |
getSeries()
Gets the mapping name of the field that shown as the Series of the chart.
|
GroupInfo |
getSeriesGroupInfo()
Gets the definition of the special group options.
|
static java.lang.String |
getStringType(int iType) |
boolean |
isBVData()
Checks whether the chart is defined by BusinessView data or not.
|
void |
setBVData(boolean isBVData)
Indicates whether the chart is defined by BusinessView data or not.
|
void |
setCategory(java.lang.String category)
Sets the mapping name of the field that is shown as the Category of the chart.
|
void |
setCategoryGroupInfo(GroupInfo categoryGroupInfo)
Sets the special group options of the Category of the chart.
|
void |
setChartLabelInfo(ChartLabelInfo chartLabelInfo)
Sets the definitions of the chart label.
|
void |
setChartLegendInfo(ChartLegendInfo chartLegendInfo)
Sets the definitions of the chart legend.
|
void |
SetChartShowType(int iType,
boolean relyAxisY2,
java.lang.String showValueName)
Set the display type and show values of the chart.
|
void |
setSeries(java.lang.String series)
Sets the mapping name of the field that is shown as the Series of the chart.
|
void |
setSeriesGroupInfo(GroupInfo seriesGroupInfo)
Sets the special group options of the Series of the chart.
|
public ChartInfo(java.lang.String category, java.lang.String series)
category
- Specifies the mapping name of the field to be displayed in the category (X) axis of the chart.series
- Specifies the mapping name of the field to be displayed in the series (Z) axis of the chartpublic ChartInfo()
category
- Specifies the mapping name of the field to be displayed in the category (X) axis of the chart.series
- Specifies the mapping name of the field to be displayed in the series (Z) axis of the chartpublic ChartInfo(java.lang.String category, java.lang.String series, boolean isBVData)
category
- Specifies the mapping name of the field to be displayed in the category (X) axis of the chart.series
- Specifies the mapping name of the field to be displayed in the series (Z) axis of the chart.isBVData
- Specifies whether or not that chart is defined by BusinessView data.public boolean isBVData()
true
if the chart is defined by BusinessView data; false
otherwise.public void setBVData(boolean isBVData)
isBVData
- If true
, indicates the chart is defined by BusinessView data; false
otherwise.public java.lang.String getCategory()
public void setCategory(java.lang.String category)
category
- Indicates the mapping name of the field that is shown as the Category of the chart.public java.lang.String getSeries()
public void setSeries(java.lang.String series)
series
- Indicates the mapping name of the field that is shown as the Series of the chart.public static java.lang.String getStringType(int iType)
public void SetChartShowType(int iType, boolean relyAxisY2, java.lang.String showValueName)
iType
- Indicates the display type of the show values in the chart.relyAxisY2
- Indicates whether to show values in the second Y Axis of the chart.showValueName
- Indicate the name of the summary shown in the chart.public void setChartLabelInfo(ChartLabelInfo chartLabelInfo)
chartLabelInfo
- Indicates the definitions of the chart label.public ChartLabelInfo getChartLabelInfo()
public void setChartLegendInfo(ChartLegendInfo chartLegendInfo)
chartLegendInfo
- Indicates the definitions of the chart legend.public ChartLegendInfo getChartLegendInfo()
public void setCategoryGroupInfo(GroupInfo categoryGroupInfo)
categoryGroupInfo
- Specifies the special group options.public GroupInfo getCategoryGroupInfo()
public void setSeriesGroupInfo(GroupInfo seriesGroupInfo)
seriesGroupInfo
- Specifies the special group options.public GroupInfo getSeriesGroupInfo()