Update default tooltip configs for scatter charts. Made scatter charts a first class chart type.

This commit is contained in:
Evert Timberg 2015-11-19 21:15:59 -05:00
parent 1471a61609
commit ca2e017f80

View File

@ -24,15 +24,27 @@
},
tooltips: {
template: "(<%= value.x %>, <%= value.y %>)",
multiTemplate: "<%if (datasetLabel){%><%=datasetLabel%>: <%}%>(<%= value.x %>, <%= value.y %>)",
callbacks: {
title: function(tooltipItems, data) {
// Title doesn't make sense for scatter since we format the data as a point
return '';
},
label: function(tooltipItem, data) {
return '(' + tooltipItem.xLabel + ', ' + tooltipItem.yLabel + ')';
}
}
},
};
// Register the default config for this type
Chart.defaults.scatter = defaultConfig;
// Scatter charts use line controllers
Chart.controllers.scatter = Chart.controllers.line;
Chart.Scatter = function(context, config) {
config.options = helpers.configMerge(defaultConfig, config.options);
config.type = 'line';
//config.options = helpers.configMerge(defaultConfig, config.options);
config.type = 'scatter';
return new Chart(context, config);
};