Skip to main content
Version: 7.9

Bar Chart

Component Palette Icon:

Description

The Bar Chart is a very easy-to-use chart that provides a familiar bar representation of any numeric values. That is, the height of the bars is determined by some numeric value in the underlying dataset. It is often configured to display as a category chart. A category chart is a chart whose X-values are categories (strings, names, groupings, etc) rather than numeric values (numbers, dates).

Like most chart components (other than the Easy Chart), the Data property drives the chart. The first column in the Data dataset defines the names of the categories. The rest of the columns define the values for each of the series (if there is more than one series per category), and thus should be numeric.

tip

If your data is 'turned on its side', meaning that the columns define the categories and rows define the series, then set the Extract Order to "By Column".

Properties

NameDescriptionProperty TypeScriptingCategory
Bar Label ColorThe color for the bar labels.Color.barLabelColorAxes
Bar Label FontThe font for the bar labels.Font.barLabelFontAxes
Bar Label OffsetThe offset between the bar and the bar label.double.barLabelOffsetAxes
BorderThe border surrounding this component. NOTE that the border is unaffected by rotation.Border.borderCommon
Category Axis LabelThe label for the category axis.String.categoryLabelAxes
Category Axis Label AngleThe angle for the value axis' labels.int.catAxisLabelPositionAxes
Category Axis Label ColorThe color for the category axis label.Color.catAxisLabelColorAxes
Category Axis Label FontThe font for the category axis label.Font.catAxisLabelFontAxes
Category Axis Lower MarginThe lower margin, as a percentage, of the category axis.double.catAxisLowerMarginAxes
Category Axis Tick ColorThe color for the category axis' ticks.Color.catAxisTickColorAxes
Category Axis Tick FontThe font for the category axis' ticks.Font.catAxisTickFontAxes
Category Axis Upper MarginThe upper margin, as a percentage, of the category axis.double.catAxisUpperMarginAxes
Category MarginThe margin between categories as a fraction of the total space.double.categoryMarginAppearance
Chart TitleAn optional title that will appear at the top of the chart.String.titleAppearance
Chart TypeControls how the bar chart is displayed.int.rendererTypeAppearance
CursorThe mouse cursor to use when hovering over this component.int.cursorCodeCommon
DataThe data driving the chart.Dataset.dataData
Data QualityThe data quality code for any tag bindings on this component.int.dataQualityData
Extract OrderControls whether the first row defines the categories or the series.int.extractOrderData
Foreground TransparencyThe transparency of the pie (useful for 3D pies).float.foregroundAlphaAppearance
Gradient bars?If true, bars will be painted with a gradient 'shine'.boolean.gradientAppearance
Item MarginThe margin between bars in a category as a fraction.double.itemMarginAppearance
Labels?Always display labels?boolean.labelsAppearance
Legend FontThe font for the legend items.Font.legendFontAxes
Legend?If true, show a legend for the chart.boolean.legendAppearance
Mouseover TextThe text that is displayed in the tooltip which pops up on mouseover of this component.String.toolTipTextCommon
NameThe name of this component.String.nameCommon
Plot BackgroundThe background color for the plot.Color.plotBackgroundAppearance
Series ColorsThe sequence of colors used for series in the bar chart.Color[].seriesColorsAppearance
Shadows?If true, bars will have a drop-shadow beneath them.boolean.shadowsAppearance
Title FontThe font for the chart's title.Font.titleFontAxes
Tooltips?If true, show tooltips.boolean.tooltipsBehavior
Value Axis Auto-RangeIf true, the value axis range will be determined automatically. If false, the specified upper and lower bounds will be used.boolean.valAxisAutoRangeAxes
Value Axis LabelThe label for the value axisString.valueLabelAxes
Value Axis Label ColorThe color for the value axis label.Color.valAxisLabelColorAxes
Value Axis Label FontThe font for the value axis label.Font.valAxisLabelFontAxes
Value Axis Lower BoundThe lower bound of the value axis. Used only when auto-range is false.double.valAxisLowerBoundAxes
Value Axis Tick ColorThe color for the value axis' ticks.Color.valAxisTickColorAxes
Value Axis Tick FontThe font for the value axis' ticks.Font.valAxisTickFontAxes
Value Axis Upper BoundThe upper bound of the value axis. Used only when auto-range is false.double.valAxisUpperBoundAxes
Value Axis Upper MarginThe upper margin, as a percentage, of the value axis. Only used when auto-range is true.double.valAxisUpperMarginAxes
VerticalSets the orientation of the chart to vertical (true) or horizontal(false)boolean.verticalAppearance
VisibleIf disabled, the component will be hidden.boolean.visibleCommon

Scripting

Scripting Functions

This component does not have scripting functions associated with it.

Extension Functions

getBarColor

  • Description

    • Provides a chance to override the color of each bar. Can be used to have bar colors changed based upon bar value. Returning the value None will use the default bar color for the series.
  • Parameters

    • Component self - A reference to the component that is invoking this function.

    • int series - The series index for this bar.

    • int category - The category index for this bar.

    • int value - The value (a number) of this bar.

    • Color defaultColor - The color that the bar would be if this function wasn't invoked.

  • Return

    • Color
  • Scope

    • Client

Event Handlers

Event handlers allow you to run a script based off specific triggers. See the full list of available event handlers on the Component Events page

Customizers

Examples

The following two charts demonstrate the effects of the extract order property on the given dataset. Two bar charts are shown, on the left Extract Order is set to "By Row" and on the right Extract Order is set to "By Column"