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
I am creating a horizontal bar graph and setting the values - here is my pseudocode
loop...
b.append_value(v)
labels << lable corresponding to value v
end loop
After all the values are built, I want to set custom labels for the Y axis.
y.set_labels( labels )
The labels show up in reverse order to the values I set. So I have to set labels like this...
y.set_labels( labels.reverse )
Possibly this is a bug?
The text was updated successfully, but these errors were encountered:
In terms of the horizontal bar graph, what do you mean by reverse? Starting at the top and going to the bottom or starting at the bottom and going to the top?
I experienced the same problem.
when you move the mouse for the tooltips they acrivate as if the bars are vertical, not horizontal.
it seems that it does not reverse the axis for the tooltips.
I used personalised tooltips for values:
hbar_value = HBarValue.new(min_year, max_int_year)
hbar_value.tooltip = c.name #c is a personal array
hbar.append_value(hbar_value)
I am creating a horizontal bar graph and setting the values - here is my pseudocode
loop...
b.append_value(v)
labels << lable corresponding to value v
end loop
After all the values are built, I want to set custom labels for the Y axis.
y.set_labels( labels )
The labels show up in reverse order to the values I set. So I have to set labels like this...
y.set_labels( labels.reverse )
Possibly this is a bug?
The text was updated successfully, but these errors were encountered: