-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Description
Hello, when I was drawing a bar chart, I noticed that ultraplot cannot set a color for each individual bar. Could you add this feature?
import ultraplot as uplt
import numpy as np
import pandas as pd
fig, ax = uplt.subplots(journal='nat1')
x = np.arange(5)
y = [10, 15, 7, 12, 9]
data = pd.DataFrame(y, index=x)
cycle = uplt.Cycle('RdYlGn', 5)
obj = ax.bar(data, cycle=cycle, edgecolor='black')

Metadata
Metadata
Assignees
Labels
No labels