IPlottableUI interface¶
Defined in
Namespace: CrissCross.WPF.Plot
Assembly: CrissCross.WPF.Plot.dll
Full name: CrissCross.WPF.Plot.IPlottableUI
Modifiers: public abstract
Summary¶
Defines the contract for a user interface component that supports plotting data with configurable scaling, point
selection, and chart settings.
Applies to
net10.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041, net481
Class hierarchy
classDiagram
class IPlottableUI
class IDisposable {
<>
}
IDisposable <|.. IPlottableUI
Implements: IDisposable
Remarks¶
Implementations of this interface allow users to control how data is visualized, including automatic or manual scaling, the number of points displayed, and chart configuration. The interface extends IDisposable, so resources associated with the plotting UI should be released when no longer needed.
Properties¶
| Name | Summary |
|---|---|
| AutoScale | Gets or sets a value indicating whether [automatic scale]. |
| ManualScale | Gets or sets a value indicating whether [manual scale]. |
| Mode | Gets or sets the mode. |
| NumberPointsPlotted | Gets or sets the number points plotted. |
| UseFixedNumberOfPoints | Gets or sets a value indicating whether [use fixed number of points]. |
| ChartSettings | Gets or sets the chart settings. |