@@ -11,6 +11,21 @@ export class BoxPlot extends BaseChart<BoxPlotData> {
publicprimaryAxis:BaseAxis|undefined;
publicsecondaryAxis:BaseAxis|undefined;
/**
* How wide should the box plots be drawn? by default this is determined by the axis. Categorical axis will give the width of the corresponding category. While continuous axis will return the size of the stroke.
* You can overwrite this behavior by redefining this function.
* How wide should the box plots be drawn? by default this is determined by the axis. Categorical axis will give the width of the corresponding category. While continuous axis will return the size of the stroke.
* You can overwrite this behavior by redefining this function.
@@ -121,6 +121,8 @@ Each LineChartData will be drawn as a single line on the chart. The entire line,
* The whiskers of the boxplot will stretch out from the core box along this axis.
*<strong>secondaryAxis</strong>: BaseAxis ( has to be set or will not drawn )
* The box plot items will use this axis to determine the width of each item drawn.
*<strong>getBandThickness</strong>: ( datapoint?: BoxPlotData ) => number
* How wide should the box plots be drawn? by default this is determined by the axis. Categorical axis will give the width of the corresponding category. While continuous axis will return the size of the stroke. You can overwrite this behavior by redefining this function.
### RadialChart <small>extends BaseChart</small>
Note: radial chart close enough property only works on the inner and outer radius. It will not consider the point if is not between the start and stop angles.