NChartFunnelSeriesSettings Class Reference
Inherits from | NChartSeriesSettings : NSObject |
---|---|
Declared in | NChartFunnelSeries.h |
gapSum
The sum of gaps between the points in the funnel chart in interval [0, 1]. The default value is 0.
Actual gap between the points is calculated as gapSum / (countOfPoints - 1)
and 1
corresponds to the height of the chart’s plot area.
@property (nonatomic, assign) float gapSum
Declared In
NChartFunnelSeries.h
resolution
The resolution of funnel. Resolution is the amount of vertices that build the circle. For example if you want to get a square funnel, you should set resolution to 4. If you want to get a cylindrical funnel, you may set a larger value. But the larger is the resolution, the more memory is used and the slower the rendering will be, so you should find out the minimal acceptable value. A good value for funnel is 80 or 160. The default value is 120.
@property (nonatomic, assign) NSUInteger resolution
Discussion
This value cannot be less than 3 and greater than 360.
Declared In
NChartFunnelSeries.h
shouldSmooth
Flag that determines if funnel should appear smooth (YES) of faced (NO). Generally if you specify low resolution (see resolution for details) when the individual faces are still visible, it is a good idea to have funnel faced and vice versa. The default value is NO.
@property (nonatomic, assign) BOOL shouldSmooth
Discussion
If funnel are faced, it consumes more memory than if they don’t by the same resolution.
Declared In
NChartFunnelSeries.h