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
Looking at the source code BarChart overrides its ProgressBar's AsciiBar property with a non-ASCII character: █. I suggest keeping it as ProgressBar's default (-) and also adding support to BarChart to change the bar character:
// Override all barsnewBarChart().Bar('+');// Override bars separatelynewBarChart().Bar(unicodeBar:'█',asciiBar:'+');
The text was updated successfully, but these errors were encountered:
The █ is part of extended ASCII (219) and part of most code pages, so it should be fine.
I'm using Spectre.Console on a Telnet server (for a MUD) to send pretty text and there are clients that can only handle 7-bit ASCII so unfortunately not for my use case 😅
Looking at the source code
BarChart
overrides itsProgressBar
'sAsciiBar
property with a non-ASCII character:█
. I suggest keeping it asProgressBar
's default (-
) and also adding support toBarChart
to change the bar character:The text was updated successfully, but these errors were encountered: