It will be a nice addition for the chart to display harvey balls, where each ball is displayed exactly under one bar (or another data point representation).
2 comments
Greg
Posted on:10 May 2016 21:22
No.
I used unicode characters:
private char GetHarveyBall(decimal percent)
{
//Empty Circle
if (percent < 0.20M)
return '\x25cb';
//Quarter Circle
if (percent < 0.40M)
return '\x25d4';
//Half Circle
if (percent < 0.60M)
return '\x25d1';
//Three Quarter Circle
if (percent < 0.80M)
return '\x25d5';
//Full Circle
return '\x25cf';
}