We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0699f9b commit cff8b13Copy full SHA for cff8b13
src/plugins/plugin.decimation.js
@@ -97,11 +97,11 @@ export default {
97
// Point the chart to the decimated data
98
let decimated;
99
switch (options.algorithm) {
100
- case 'min-max':
101
- decimated = minMaxDecimation(data, availableWidth);
102
- break;
103
- default:
104
- throw new Error(`Unsupported decimation algorithm '${options.algorithm}'`);
+ case 'min-max':
+ decimated = minMaxDecimation(data, availableWidth);
+ break;
+ default:
+ throw new Error(`Unsupported decimation algorithm '${options.algorithm}'`);
105
}
106
107
dataset._decimated = decimated;
0 commit comments