| 227 | } |
| 228 | |
| 229 | pub struct TitleOption<'a> { |
| 230 | /// An object that controls the styling of the axis title. |
| 231 | pub style: StyleOption<'a>, |
| 232 | |
| 233 | /// The title text. A `null` value means the title is hidden. |
| 234 | pub text: Option<&'a str>, |
| 235 | } |
| 236 | |
| 237 | impl<'a> Default for BarChartOptions<'a> { |
| 238 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected