I use ionic 3 and also use the charjs graphics mapping library . Since the width of mobile screens is not great, I want to scroll horizontally in order to display 12 months well on a mobile phone screen. I do this:

<ion-scroll scrollX="true" scrollY="true" style="width: 100%; height: 100%"> <canvas padding-bottom id="myChartDiogram" width="900" height="1000"></canvas> </ion-scroll> 

But scroll doesn't work. Why doesn't scroll work?

    0