lets-plot icon indicating copy to clipboard operation
lets-plot copied to clipboard

`scale_color_gradient`: Tooltip formatting does not inherit from scale formatting

Open ASmirnov-HORIS opened this issue 1 year ago • 0 comments

Example:

data = {
    'x': [0, 1],
    'y': [0, 1],
    'g': [0, 1e10],
}
ggplot(data, aes('x', 'y', color='g')) + geom_point() + scale_color_gradient(format=".2~s")

Output:

Expected:

ASmirnov-HORIS avatar Dec 18 '24 12:12 ASmirnov-HORIS