You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
}