Replies: 1 comment 2 replies
-
You can use the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Need a way to show the full text per each category value of the category column. Right now as you can see in the screenshot, they are truncated to a limited size. Also if possible, is there a way to manually set the chart area to the minimum, so that it is mostly the category bins in display?
Sample codes used for this screen.
bar_chart1 = alt.Chart(df).transform_aggregate(
count='count()',
groupby=['Category']
).transform_joinaggregate(
total='sum(count)'
).transform_calculate(
frac=alt.datum.count / alt.datum.total
Thank you for your time.
Beta Was this translation helpful? Give feedback.
All reactions