| 488 | } |
| 489 | |
| 490 | pub struct LineChartXAxisOptions<'a> { |
| 491 | /// The color of the horizontal grid lines. |
| 492 | pub grid_line_color: Color, |
| 493 | |
| 494 | /// The width of the horizontal grid lines. |
| 495 | pub grid_line_width: f64, |
| 496 | |
| 497 | /// The color of the axis itself. |
| 498 | pub line_color: Color, |
| 499 | |
| 500 | /// The width of the axis itself. |
| 501 | pub line_width: f64, |
| 502 | |
| 503 | /// An object that controls the axis labels. |
| 504 | pub labels: LineChartXAxisLabelsOptions<'a>, |
| 505 | |
| 506 | /// The position of the axis relative to the chart area. |
| 507 | /// Supported values: "bottom". |
| 508 | pub position: Position, |
| 509 | |
| 510 | /// An object that controls the axis title. |
| 511 | pub title: TitleOption<'a>, |
| 512 | } |
| 513 | |
| 514 | pub struct LineChartYAxisLabelsOptions<'a> { |
| 515 | /// (num value) -> String - A function that formats the labels. |
nothing calls this directly
no outgoing calls
no test coverage detected