Hi,
We are using ejs-chart and ejs-accumulationchart in our project, we need to adjust annotation position base on control size, when we change control size by dragging the right-bottom corner, the resized event does not fire after we change the size, please help us and give us a sample, below is the code
<template>
<div id="container" style='display:block;height:100%;width:100%;'>
<ejs-chart class="barcontainer" id="occupancyEvaChart" ref="occupancyEvaChart"
:title="charttitle" :titleStyle="barChartTitleStyle"
:palettes="palettes" :key="chartkey"
:legendSettings="barlegendSettings"
:primaryXAxis="primaryXAxis"
:resized="occupancyEvaChartResized"
:loaded="occupancyEvaChartLoaded" >
<e-series-collection>
</e-series-collection>
</ejs-chart>
</div>
</template>
export default {
methods: {
occupancyEvaChartLoaded : function (args) {
},
occupancyEvaChartResized: function (args) {
}
}
Thanks,
CZ
};