Version

Working with 2D Column Chart Data

This topic discusses useful information that will help you to ensure that your data is rendered properly in the 2D column chart.

Data Requirements

While the Chart control allows you to easily point the chart to your own custom data, it is important that you are supplying the appropriate amount and type of data that the chart requires. If the data does not meet the minimum requirements based on the type of chart that you are using, an error will be generated.

The following is a list of data requirements for 2D column charts:

Note
Note

If the data available is in a format where each column represents one line, and each row contains points for each line, then you should swap the rows and columns. For information on how to do this, see Swap Rows and Columns.

Mapping Data to a 2D Column Chart

The chart data is rendered using the following rules:

  • Each row is drawn separately as a group of vertical columns. These groups of columns are called a "series".

  • Each series displays series labels below the x-axis. Data values are represented by the height of the column along the y-axis. Series can be separated by an interval of SeriesSpacing column widths.

  • Every numeric column is displayed in the chart. A numeric column is any DataColumn that contains only values that can be interpreted as numbers.

  • The first string column encountered in the data will be used for row labels.

  • You can select an alternate column to be used for row labels, and toggle between the primary and secondary labels.

  • You can include or exclude any column from the chart using the UltraChart.Data. IncludeColumn method.

  • The x-axis (or horizontal axis) is a SetLabelAxis object, with the points evenly spaced apart by series (group) and item (column). The y-axis (or vertical axis) is the numeric axis. Labels on the y-axis can be formatted using the FormatString property and a “numeric format”:

UltraChart.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:##.##>"

See below for an example data set, along with the rendered 2D column chart.

Week# ActiveX Java NET

Week 1

25

85

65

Week 2

15

200

95

Week 3

100

45

110

Week 4

120

75

99

Week 5

60

113

50

Shows a 2D Column Chart based on the data listed in the table above.