I am using Chart to show a bar graph and the individual "TICK" marks show up as question mark. Been trying to debug it and I was able to make it work when I change TICK from the defined quoted value to
TICK = u"\u2588"
At that point I get a solid color block in whatever color defined. I tried to
and the class would not reflect the overwrite of the TICK variable passed. I reviewed the code of the library and the TICK is a global value that is changed when is passed via the argument, but not when I import the package.
What do you recommend is the best approach to fix the definition of TICK so that it will show properly in windows 10.
I am using Chart to show a bar graph and the individual "TICK" marks show up as question mark. Been trying to debug it and I was able to make it work when I change TICK from the defined quoted value to
TICK = u"\u2588"
At that point I get a solid color block in whatever color defined. I tried to
and the class would not reflect the overwrite of the TICK variable passed. I reviewed the code of the library and the TICK is a global value that is changed when is passed via the argument, but not when I import the package.
What do you recommend is the best approach to fix the definition of TICK so that it will show properly in windows 10.
-- Adonis