const lastTick = this.xAxis[0].ticks[this.xAxis[0].tickPositions.length - 1];
const { width } = lastTick.label.getBBox();
const { chartWidth } = this;
lastTick.label.attr({ x: chartWidth - (0.7) * width });
这是高图代码。我想要{ width }
,{ chartWidth }
的含义。
具有内部属性
const { chartWidth } = this;
与]相同>
const chartWidth = this.chartWidth;
称为Destructuring assignment。类似于写