I'm trying to programmatically zoom in my Chart when loaded.
It is correctly working when i'm not allowing my horizontal axis to pan and when I add horizontalZoom="3" to the RadCartesianChart. But when I add allowPan="true" or allowZoom="true" on my horizontal Axis, it understands that he needs to zoom out completely.
My need is to give the possibility to pan in an already zoomed Chart.
<template>
<Page>
<RadCartesianChart horizontalZoom="3">
<RadCartesianChartGrid v-tkCartesianChartGrid verticalStripLineColor="#00F,#F00" />
<CategoricalAxis v-tkCartesianHorizontalAxis allowPan="true" allowZoom="false" />
<LinearAxis v-tkCartesianVerticalAxis minimum="0" maximum="200" majorStep="40" />
<LineSeries
v-tkCartesianSeries
v-bind:items="items"
categoryProperty="category"
valueProperty="value"
/>
</RadCartesianChart>
</Page>
</template>
This doesn't work. The horizontalZoom="3" does nothing. I suppose I need to set the allowPan allowZoom and horizontalZoom values programmatically but nothing tends to work.