OnGraphDraw
This feature is experimental and may be subject to future non-backward-compatible changes.
Requires Analytica 5.1 or later.
Attribute OnGraphDraw
This attribute holds an expression that is evaluated while a graph is being drawn. A Canvas is provided to the expression, enabling it to run custom drawing commands before the final graph is shown.
Several local variables are pre-defined, and hence can be used in the OnGraphDraw expression code. These provide information about the graph and the current graphing roles. The predefined local variables are:
- canv: The canvas
- info: A vector of information about the graph, such as the dimensions of the graph and location of the plot area. The vector is indexed by the system index OnGraphDrawItem index.
- phase: The drawing phase. This enables you to detect at what stage of the graph rendering the attribute is being evaluated. Possible values are: 1=Before graphing has started, 2=After the graph layout has been calculated, but before anything is drawn, 4=After the background and axes have been drawn, but before the data is plotted, 8=After the graph has been fully rendered (except for your own embellishments).
- roles: Information about the graphing dimensions that fill each graphing role. This is indexed by GraphingRoles and GraphFillerInfo.
- continue: A boolean that you can set to false if you don't want the graph to be drawn any further beyond this point. This can be used to substitute your own custom drawing code in place of the built-in graphing engine, which might include totally different graphical depictions.
- roleChanges: It is possible to alter axis scaling by changing items in this local. For example, you may need to adjust the axis range in order to register a map image so that data plotted on top appear at the correct latitude and longitude.
When OnGraphDraw is evaluated
The OnGraphDraw attribute can be called at four different points during the graph rendering. By default, it is called only after the graph has been rendered. That is a useful point if you want to draw annotations on the graph over the data. To cause it to evaluated at other points during the graph rendering processes, set the system variable OnGraphDrawFlags to a number equal to the sum of any of these flags:
- 1 = Call before graphing has started. (Note: The layout info, such as the plot area, is not yet determined).
- 2 = Call after the layout has been determined, but before the grapher has drawn anything.
- 4 = Call after the background and axes have been drawn, but before data points, lines or bars have been drawn.
- 8 = Call after the standard graphing has completed.
If you want to replace the graph entirely with a custom graphical depiction of your own, you should set OnGraphDrawFlags to 1, and then set continue:=0
from your OnGraphDraw code.
If you want to draw something behind everything else, or alter the exact axis scaling, you should include the OnGraphDrawFlags=2 flag. For example, this is a good time to draw a map and then twiddle the axis ranges to ensure proper map registration.
If you want something draw above your background, but behind your data, use the OnGraphDrawFlags=4 flag.
If you want to annotate the graph or data, the OnGraphDrawFlags=8 is appropriate.
If you use more than 1 flag, then your OnGraphDraw expression should is an If-Then branch on the local phase
.
Enable comment auto-refresher