Skip to content

[syncfusion_flutter_charts] [Feature Request] Need the possibility to hide only one edge label #31

Closed
@archie-sh

Description

@archie-sh

In the current implementation it is only possible to hide or keep both edge labels

/// Placement of edge labels in the axis.
enum EdgeLabelPlacement {
  /// - EdgeLabelPlacement.none, places the edge labels in its own position.
  none,

  /// - EdgeLabelPlacement.hides, hide the edge labels.
  hide,

  /// - EdgeLabelPlacement.shift, shift the edge labels inside the plot area bounds.
  shift
}

I need to hide only the left most EdgeLabel, would work the same for the right one e.g.

/// Placement of edge labels in the axis.
enum EdgeLabelPlacement {
  /// - EdgeLabelPlacement.none, places the edge labels in its own position.
  none,

  /// - EdgeLabelPlacement.hides, hide the edge labels.
  hide,
  /// - EdgeLabelPlacement.hides, hide the left-most edge labels.
  hideLeft,
  /// - EdgeLabelPlacement.hides, hide the right-most edge labels.
  hideRight,
  /// - EdgeLabelPlacement.shift, shift the edge labels inside the plot area bounds.
  shift
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions