update readme and example
This commit is contained in:
parent
db221b934d
commit
0bc7aed2c6
@ -207,7 +207,7 @@ export default class Painter {
|
|||||||
while (this.ctx.measureText(`${text}...`).width > width) {
|
while (this.ctx.measureText(`${text}...`).width > width) {
|
||||||
text = text.substring(0, text.length - 1);
|
text = text.substring(0, text.length - 1);
|
||||||
}
|
}
|
||||||
text += "..."
|
text += '...';
|
||||||
}
|
}
|
||||||
const x = -(width / 2);
|
const x = -(width / 2);
|
||||||
const y = -(height / 2) + (i === 0 ? view.css.fontSize.toPx() : (view.css.fontSize.toPx() + i * lineHeight));
|
const y = -(height / 2) + (i === 0 ? view.css.fontSize.toPx() : (view.css.fontSize.toPx() + i * lineHeight));
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user