TiPlotChannelCustom.MarkersTurnOffLimit

TiPlotChannelCustom

Provides for a maximum limit to the number of Data Markers that will be drawn to the screen.

property
MarkersTurnOffLimit : Integer;

Description

Use MarkersTurnOffLimit to set or get the maximum limit of the number of viewable Data Markers. If the number of data markers to be drawn to the screen exceeds this limit, then all data markers for the channel will be hidden.

This is useful when you want to prevent the component from using too much processor time when drawing large numbers of data markers.

Note: this is a per-channel property and does not affect other channels. The default is 0 which disables this feature.

Example

Delphi

iComponent.Channel[0].MarkersTurnOffLimit := 5000;

C++ Builder

iComponent->Channel[0]->MarkersTurnOffLimit = 5000;

Contents | Index | Previous | Next