| 83 | } |
| 84 | |
| 85 | pub struct RadarChart<'a, C, M, D> |
| 86 | where |
| 87 | C: CanvasContext<Pattern>, |
| 88 | M: fmt::Display, |
| 89 | D: fmt::Display + Copy, |
| 90 | { |
| 91 | props: RefCell<RadarChartProperties>, |
| 92 | base: BaseChart<'a, C, PolarPoint<D>, M, D, RadarChartOptions<'a>>, |
| 93 | } |
| 94 | |
| 95 | impl<'a, C, M, D> RadarChart<'a, C, M, D> |
| 96 | where |
nothing calls this directly
no outgoing calls
no test coverage detected