[C#] | public void setInterpolation(int xSamples [, int ySamples [, bool isSmooth [, bool isColorSmooth ]]]); |
[VB] | Public Sub setInterpolation(xSamples As Integer [, ySamples As Integer [, isSmooth As Boolean [, isColorSmooth As Boolean ]]]) |
ChartDirector 7.1 (.NET Edition)
SurfaceChart.
Usage
[C#] | public void setInterpolation(int xSamples [, int ySamples [, bool isSmooth [, bool isColorSmooth ]]]); |
[VB] | Public Sub setInterpolation(xSamples As Integer [, ySamples As Integer [, isSmooth As Boolean [, isColorSmooth As Boolean ]]]) |
Description
Arguments
Argument | Default | Description |
---|---|---|
xSamples | (Mandatory) | The number of samples on the x-dimension to interpolate to. |
ySamples | -1 | The number of samples on the y-dimension to interpolate to. -1 means it is the same as xSamples. |
isSmooth | true | A true value means to use spline surface interpolation for the z values. A false value means to use bilinear/linear interpolation. |
isColorSmooth | (Optional) | A true value means to use spline surface interpolation for the w values. A false value means to use bilinear/linear interpolation. If this argument is not specified, the default is to use the same interpolation method as the z values. |
Return Value