[C#] | public void setSubsetRange(double xStart, double xEnd [, int resolution ]); |
[VB] | Public Sub setSubsetRange(xStart As Double, xEnd As Double [, resolution As Integer ]) |
ChartDirector 7.1 (.NET Edition)
DataAccelerator.
Usage
[C#] | public void setSubsetRange(double xStart, double xEnd [, int resolution ]); |
[VB] | Public Sub setSubsetRange(xStart As Double, xEnd As Double [, resolution As Integer ]) |
Description
Arguments
Argument | Default | Description |
---|---|---|
xStart | (Mandatory) | The x value at the start of the visible range. |
xEnd | (Mandatory) | The x value at the end of the visible range. |
resolution | 0 | The approximate number of pixels available in the x direction for plotting the chart. In the most common case that the x-axis is horizontal, this is the plot area width. If this argument is not provided, ChartDirector will automatically choose the resolution to use. |
Return Value