| 48 | } |
| 49 | |
| 50 | pub struct TitleOptions<'a> { |
| 51 | /// The position of the title relative to the chart area. |
| 52 | /// Supported values: "above", "below", "middle", "none"; |
| 53 | pub position: Position, |
| 54 | |
| 55 | /// An object that controls the styling of the chart title. |
| 56 | pub style: StyleOption<'a>, |
| 57 | |
| 58 | /// The title text. A `null` value means the title is hidden. |
| 59 | pub text: Option<&'a str>, |
| 60 | } |
| 61 | |
| 62 | pub struct TooltipOptions<'a> { |
| 63 | /// bool - Whether to show the tooltip. |
nothing calls this directly
no outgoing calls
no test coverage detected