BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hi, I'm working with SplineAreaSeries, my primary XAxis is a DateTimeAxis type, I'm working with the format of hours and minutes. Exists a property for setting the maximum number of data displayed in X axis? But with the possibility of seeing the rest of the data using panning in the chart.
For example, If I have values between 7:00 - 9:00, And I want to set just for display the information between 7:00 - 8:00, but with the possibility of access the rest data (8:00 - 9:00) with panning.
I explored the properties of primaryXAxis, but the property 'maximum' doesn't make this feature that I want.
Regards.
SfCartesianChart(
primaryXAxis: DateTimeAxis(
visibleMinimum: chartData[chartData.length-29].x,
visibleMaximum: chartData[chartData.length-1].x
),
zoomPanBehavior: ZoomPanBehavior(
enablePanning: true,
),
//Other configurations
), |