ChartTypeCharacterizer

ChartTypeCharacterizer class

Helper for getting additional information about charts and series by its ChartType.

The ChartTypeCharacterizer type exposes the following members:

Methods

NameDescription
is_bar_3d_chart(chart_type)Return true if chartType is one of bar3DChart subtypes (3D columns or bars).
is_2d_chart(chart_type)Return true if
is_3d_chart(chart_type)Return true if
is_chart_type_column(chart_type)Return true if chartType is one of Column subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
CLUSTERED_COLUMN,
CLUSTERED_COLUMN_3D,
CLUSTERED_CONE,
CLUSTERED_CYLINDER,
CLUSTERED_PYRAMID,
PERCENTS_STACKED_COLUMN,
PERCENTS_STACKED_COLUMN_3D,
PERCENTS_STACKED_CONE,
PERCENTS_STACKED_CYLINDER,
PERCENTS_STACKED_PYRAMID,
STACKED_COLUMN,
STACKED_COLUMN_3D,
STACKED_CONE,
STACKED_CYLINDER,
STACKED_PYRAMID,
COLUMN_3D,
CYLINDER_3D,
CONE_3D,
PYRAMID_3D.
is_chart_type_line(chart_type)Return true if chartType is one of Line subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
LINE,
LINE_WITH_MARKERS,
PERCENTS_STACKED_LINE,
PERCENTS_STACKED_LINE_WITH_MARKERS,
STACKED_LINE,
STACKED_LINE_WITH_MARKERS,
LINE_3D.
is_chart_type_pie(chart_type)Return true if chartType is one of Pie subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
BAR_OF_PIE,
EXPLODED_PIE,
EXPLODED_PIE_3D,
PIE,
PIE_3D,
PIE_OF_PIE.
is_chart_type_bar(chart_type)Return true if chartType is one of Bar subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
CLUSTERED_BAR,
CLUSTERED_BAR_3D,
PERCENTS_STACKED_BAR,
PERCENTS_STACKED_BAR_3D,
STACKED_BAR,
STACKED_BAR_3D,
CLUSTERED_HORIZONTAL_CONE,
CLUSTERED_HORIZONTAL_CYLINDER,
CLUSTERED_HORIZONTAL_PYRAMID,
STACKED_HORIZONTAL_CONE,
STACKED_HORIZONTAL_CYLINDER,
STACKED_HORIZONTAL_PYRAMID,
PERCENTS_STACKED_HORIZONTAL_CONE,
PERCENTS_STACKED_HORIZONTAL_CYLINDER,
PERCENTS_STACKED_HORIZONTAL_PYRAMID.
is_chart_type_area(chart_type)Return true if chartType is one of Area subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
AREA,
PERCENTS_STACKED_AREA,
PERCENTS_STACKED_AREA_3D,
STACKED_AREA,
STACKED_AREA_3D,
AREA_3D.
is_chart_type_scatter(chart_type)Return true if chartType is one of Scatter subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
SCATTER_WITH_MARKERS,
SCATTER_WITH_SMOOTH_LINES,
SCATTER_WITH_SMOOTH_LINES_AND_MARKERS,
SCATTER_WITH_STRAIGHT_LINES,
SCATTER_WITH_STRAIGHT_LINES_AND_MARKERS.
is_chart_type_stock(chart_type)Return true if chartType is one of Stock subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
HIGH_LOW_CLOSE,
OPEN_HIGH_LOW_CLOSE,
VOLUME_HIGH_LOW_CLOSE,
VOLUME_OPEN_HIGH_LOW_CLOSE.
is_chart_type_surface(chart_type)Return true if chartType is one of Surface subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
SURFACE_3D,
WIREFRAME_SURFACE_3D,
CONTOUR,
WIREFRAME_CONTOUR.
is_chart_type_doughnut(chart_type)Return true if chartType is one of Doughnut subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
DOUGHNUT,
EXPLODED_DOUGHNUT.
is_chart_type_bubble(chart_type)Return true if chartType is one of Bubble subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
BUBBLE,
BUBBLE_WITH_3D.
is_chart_type_radar(chart_type)Return true if chartType is one of Radar subtypes.
Subtypes set corresponds to the appropriate set in PowerPoint (see “Change Chart Type” dialog in PowerPoint):
FILLED_RADAR,
RADAR,
RADAR_WITH_MARKERS.
is_series_uses_x_value_coordinate(series_type)Returns if specified series type uses X value coordinates.
is_series_uses_y_value_coordinate(series_type)Returns if specified series type uses Y value coordinates.
is_series_uses_value_coordinate(series_type)Returns if specified series type uses value coordinates.
is_series_uses_bubble_size_coordinate(series_type)Returns if bubble size coordinates can be used for specified series type.
has_series_trend_lines(series_type)Returns if there are series trend lines for specified series type.
is_error_bars_x_allowed(series_type)Returns if error bars X allowed for specified series type.
is_error_bars_y_allowed(series_type)Returns if error bars Y allowed for specified series type.

See Also