| NChartPointStatePointStateWithCircleValue Method | 
 
Create a point state representing the point that is aligned to the concentric circles. This is a typical state for
pie series if drawn in 2D.
 
    Namespace: 
   NChart3D_UWP
    Assembly:
   NChart3D_UWP (in NChart3D_UWP.dll) 
 Syntax
Syntaxpublic static NChartPointState PointStateWithCircleValue(
	int circle,
	double value
)
Public Shared Function PointStateWithCircleValue ( 
	circle As Integer,
	value As Double
) As NChartPointState
public:
static NChartPointState^ PointStateWithCircleValue(
	[InAttribute] int circle, 
	[InAttribute] double value
)
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.
Return Value
Type: 
NChartPointStateA new instance of the point state. 
 See Also
See Also