Skip to content

Commit b33b7eb

Browse files
committed
fix(android): bar chart fix
1 parent a14270e commit b33b7eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/charting/buffer/AbstractBuffer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export abstract class AbstractBuffer<T> {
1616
*/
1717
constructor(size: number) {
1818
this.index = 0;
19-
this.buffer = Utils.createArrayBuffer(size);
19+
this.buffer = Utils.getTempArray(size);
2020
}
2121

2222
/** limits the drawing on the x-axis */

0 commit comments

Comments
 (0)