| 714 | } |
| 715 | |
| 716 | pub struct PieChartSeriesOptions<'a> { |
| 717 | /// bool - Whether to draw the slices counterclockwise. |
| 718 | pub counterclockwise: bool, |
| 719 | |
| 720 | /// An object that controls the channel labels. |
| 721 | pub labels: PieChartSeriesLabelsOptions<'a>, |
| 722 | |
| 723 | /// The start angle in degrees. Default is -90, which is 12 o'clock. |
| 724 | pub start_angle: f64, |
| 725 | } |
| 726 | |
| 727 | pub struct PieChartOptions<'a> { |
| 728 | /// If between 0 and 1, displays a donut chart. The hole will have a |
nothing calls this directly
no outgoing calls
no test coverage detected