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
The default legend callback, reproduced below, should fallback to the values in the config if possible.
generateLabels: function(data){returnhelpers.isArray(data.datasets) ? data.datasets.map(function(dataset,i){return{text: dataset.label,fillStyle: dataset.backgroundColor,hidden: dataset.hidden,lineCap: dataset.borderCapStyle,lineDash: dataset.borderDash,lineDashOffset: dataset.borderDashOffset,lineJoin: dataset.borderJoinStyle,lineWidth: dataset.borderWidth,strokeStyle: dataset.borderColor,// Below is extra data used for toggling the datasetsdatasetIndex: i};},this) : [];}