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 ae106c4 commit c88f4aaCopy full SHA for c88f4aa
danfojs-browser/src/plotting/plot.js
@@ -655,7 +655,8 @@ export class Plot {
655
params.forEach((param) => { //TODO accept individual configuration for traces
656
trace[param] = config[param];
657
});
658
- trace["y"] = this.ndframe[c_name].values;
+ trace["x"] = this.ndframe[c_name].values;
659
+ trace["y"] = this.ndframe.index;
660
trace['name'] = c_name;
661
trace['type'] = 'box';
662
data.push(trace);
0 commit comments