Skip to content

Commit

Permalink
fix(android): bar chart fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Nov 4, 2021
1 parent a14270e commit b33b7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charting/buffer/AbstractBuffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export abstract class AbstractBuffer<T> {
*/
constructor(size: number) {
this.index = 0;
this.buffer = Utils.createArrayBuffer(size);
this.buffer = Utils.getTempArray(size);
}

/** limits the drawing on the x-axis */
Expand Down

0 comments on commit b33b7eb

Please sign in to comment.