Open GoogleCodeExporter opened 8 years ago
OK. I solved it myself.
Find this row: ctx.strokeStyle = this.color;
And insert this few lines there.
/**
* Solve the color key-line color mix problem
*/
if (h>0) goodLineColor=dataGroups[h-1].color;
else goodLineColor=dataGroups[h].color;
ctx.strokeStyle = goodLineColor;
And then change this line:
ctx.fillStyle = this.color;
to this one:
ctx.fillStyle = goodLineColor;
Original comment by tamas....@eldanor.hu
on 18 Apr 2010 at 2:43
Original comment by scottj...@gmail.com
on 23 Apr 2010 at 8:26
Original issue reported on code.google.com by
tamas....@eldanor.hu
on 16 Apr 2010 at 3:45