| 849 | } |
| 850 | |
| 851 | pub struct RadarChartSeriesOptions<'a> { |
| 852 | /// The opacity of the area between a channel and the x-axis. |
| 853 | pub fill_opacity: f64, |
| 854 | |
| 855 | /// The line width of the channel. |
| 856 | pub line_width: f64, |
| 857 | |
| 858 | /// An object that controls the channel labels. |
| 859 | /// Whether to show the labels. |
| 860 | pub labels: Option<StyleOption<'a>>, |
| 861 | |
| 862 | /// An object that controls the markers. |
| 863 | pub markers: RadarChartSeriesMarkersOptions, |
| 864 | } |
| 865 | |
| 866 | pub struct RadarChartXAxisLabelsOptions<'a> { |
| 867 | /// (num value) -> String - A function that formats the labels. |
nothing calls this directly
no outgoing calls
no test coverage detected