NChartPointStatePointStateWithCircleValueHeight Method |
Create a point state representing the point that is aligned to the concentric circles and has the height. This is a
typical state for pie series if drawn in 3D.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public static NChartPointState PointStateWithCircleValueHeight(
int circle,
double value,
double height
)
Public Shared Function PointStateWithCircleValueHeight (
circle As Integer,
value As Double,
height As Double
) As NChartPointState
public:
static NChartPointState^ PointStateWithCircleValueHeight(
[InAttribute] int circle,
[InAttribute] double value,
[InAttribute] double height
)
Parameters
- circle
- Type: SystemInt32
Number of circle among concentric circles that represents the category. - value
- Type: SystemDouble
Value of the state that affects the angle of the sector. The angle will represent the percent of the
value among all values in the circle this state belongs to. - height
- Type: SystemDouble
height of sector. The height should be in interval 0..1. It is not connected to any axis so the
value is not mapped. You may use it to visually group sectors or to stress some of them.
Return Value
Type:
NChartPointStateA new instance of the point state.
See Also