Interface IPivotOptions
public interface IPivotOptions
Represents the options whether to display pivot chart bottons.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanGets whether to display all field buttons on a PivotChart.booleanGets whether to display the axis field buttons on a PivotChart.booleanGets whether to display the expand entire field and collapse entire field buttons on a PivotChart.booleanGets whether to display the legend field buttons on a PivotChart.booleanGets whether to display the report filter field buttons on a PivotChart.booleanGets whether to display the value field buttons on a PivotChart.voidsetShowAllFieldButtons(boolean value) Sets whether to display all field buttons on a PivotChart.voidsetShowAxisFieldButtons(boolean value) Sets whether to display the axis field buttons on a PivotChart.voidsetShowExpandCollapseEntireFieldButtons(boolean value) Sets whether to display the expand entire field and collapse entire field buttons on a PivotChart.voidsetShowLegendFieldButtons(boolean value) Sets whether to display the legend field buttons on a PivotChart.voidsetShowReportFilterFieldButtons(boolean value) Sets whether to display the report filter field buttons on a PivotChart.voidsetShowValueFieldButtons(boolean value) Sets whether to display the value field buttons on a PivotChart.
-
Method Details
-
getShowReportFilterFieldButtons
boolean getShowReportFilterFieldButtons()Gets whether to display the report filter field buttons on a PivotChart. -
setShowReportFilterFieldButtons
void setShowReportFilterFieldButtons(boolean value) Sets whether to display the report filter field buttons on a PivotChart. -
getShowLegendFieldButtons
boolean getShowLegendFieldButtons()Gets whether to display the legend field buttons on a PivotChart. -
setShowLegendFieldButtons
void setShowLegendFieldButtons(boolean value) Sets whether to display the legend field buttons on a PivotChart. -
getShowAxisFieldButtons
boolean getShowAxisFieldButtons()Gets whether to display the axis field buttons on a PivotChart. -
setShowAxisFieldButtons
void setShowAxisFieldButtons(boolean value) Sets whether to display the axis field buttons on a PivotChart. -
getShowValueFieldButtons
boolean getShowValueFieldButtons()Gets whether to display the value field buttons on a PivotChart. -
setShowValueFieldButtons
void setShowValueFieldButtons(boolean value) Sets whether to display the value field buttons on a PivotChart. -
getShowAllFieldButtons
boolean getShowAllFieldButtons()Gets whether to display all field buttons on a PivotChart. -
setShowAllFieldButtons
void setShowAllFieldButtons(boolean value) Sets whether to display all field buttons on a PivotChart. -
getShowExpandCollapseEntireFieldButtons
boolean getShowExpandCollapseEntireFieldButtons()Gets whether to display the expand entire field and collapse entire field buttons on a PivotChart. -
setShowExpandCollapseEntireFieldButtons
void setShowExpandCollapseEntireFieldButtons(boolean value) Sets whether to display the expand entire field and collapse entire field buttons on a PivotChart.
-