this.datasets[datasetIndex].bars.push(new this.BarClass({
value : value,
label : label,
+ datasetLabel: this.datasets[datasetIndex].label,
x: this.scale.calculateBarX(this.datasets.length, datasetIndex, this.scale.valuesCount+1),
y: this.scale.endPoint,
width : this.scale.calculateBarWidth(this.datasets.length),
this.datasets[datasetIndex].points.push(new this.PointClass({
value : value,
label : label,
+ datasetLabel: this.datasets[datasetIndex].label,
x: this.scale.calculateX(this.scale.valuesCount+1),
y: this.scale.endPoint,
strokeColor : this.datasets[datasetIndex].pointStrokeColor,
this.datasets[datasetIndex].points.push(new this.PointClass({
value : value,
label : label,
+ datasetLabel: this.datasets[datasetIndex].label,
x: pointPosition.x,
y: pointPosition.y,
strokeColor : this.datasets[datasetIndex].pointStrokeColor,
-}).call(this);
\ No newline at end of file
+}).call(this);