| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: chart-widget
Returns the value of the chart-items-limit property of
a chart-widget
. The value
may be set at creation time by passing
the :chart-items-limit
initarg, or any time later
by calling (setf chart-items-limit).
chart-items-limit is the
maximum number of chart items that a chart-widget
will collect. The value should be a
positive integer, or else nil
for no
limit. The default value is nil
.
If set-chart-value is called with an item index that would cause the number of chart items to exceed this limit, then older chart items are first removed to avoid exceeding the limit when the new item is added. ("Older" chart items means items with the lowest indices.)
This property would typically be used when collecting data incrementally over time, to cause a chart-widget to display the most recent N pieces of data while throwing away older data for efficiency.
To temporarily exclude older items from view rather than permanently removing them, use chart-items-min-index.
See also chart-items-pushed-off.
See chart-widget
and also cg-chart-widget.htm.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |