Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

On the left toolbar, there is the option to create charts Image Added

Select and then create a box in the report grouping that you want the chart.

Select the chart and a little blue box will pop up in the corner.

Image Added

A Chart Tasks dialog box will pop open and here you can select "Run Wizard"

Image Added


The will enable the Chart Wizard

Image Added


Chart Type

Appearance

Series

Data

Chart

Diagram

Panes

Axes

Series Views

Point Labels

Chart Titles

Legend

Annotations



Here is additional information from Dev Express on Charts: 


Scripts to group chart data:



Private Sub chart1_BeforePrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs)
Dim xrc As XRChart = CType(sender,XRChart)
Dim filter_value As String = GetCurrentColumnValue("General_GroupCode")
' System.Windows.Forms.MessageBox.Show(filter_value)
if Not String.IsNullOrEmpty(filter_value) then
For each srs as Series in xrc.Series
srs.DataFilters.Clear
srs.DataFilters.Add(New DataFilter("LayerReportData.General_GroupCode", "System.String", _
DataFilterCondition.Equal, filter_value))
Next
end if

End Sub