Skip to content

Commit

Permalink
Updated Chart.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kats committed Apr 24, 2018
1 parent 629fd7d commit 19165e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Angara.ChartJS/scripts/Chart.js
@@ -1,4 +1,4 @@
define(["jquery", "chartViewer.umd", "exports"], function ($, Charting, exports) {
define(["jquery", "idd.umd", "exports"], function ($, Charting, exports) {
exports.Show = function (plots, container) {
var plotMap = {};
for (var i = 0; i < plots.length; i++) {
Expand All @@ -9,6 +9,6 @@
props["titles"] = pi.titles;
plotMap[i] = props;
}
Charting.ChartViewer.show(container, plotMap);
Charting.InteractiveDataDisplay.show(container, plotMap);
};
});

0 comments on commit 19165e6

Please sign in to comment.