We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a14270e commit b33b7ebCopy full SHA for b33b7eb
src/charting/buffer/AbstractBuffer.ts
@@ -16,7 +16,7 @@ export abstract class AbstractBuffer<T> {
16
*/
17
constructor(size: number) {
18
this.index = 0;
19
- this.buffer = Utils.createArrayBuffer(size);
+ this.buffer = Utils.getTempArray(size);
20
}
21
22
/** limits the drawing on the x-axis */
0 commit comments