About subject, in my case (v1.5.0 Beta 1):
            
if ("pie" !== h.type && "doughnut" !== h.type && "funnel" !== h.type) k = {
    markerType: k,
    markerColor: m,
Replace with:
           
if ("pie" !== h.type && "doughnut" !== h.type && "funnel" !== h.type) k = {
    markerBorderColor: h._colorSet[0]
    markerType: k,
    markerColor: m,
I.drawMarker(f + r / 2, g + this.lineHeight / 2, this.ctx, k.markerType, r, k.markerColor, null, 0);
replace with
I.drawMarker(f + r / 2, g + this.lineHeight / 2, this.ctx, k.markerType, r, k.markerColor, k.markerBorderColor, 1);
	- 
		This reply was modified 11 years, 2 months ago by 
XAOPT.