I have an asp chart which looks like this:
<asp:Chart ID="Chart1" runat="server" BorderlineColor="Black"
BorderlineDashStyle="Solid" BackColor="#B6D6EC" BackGradientStyle="TopBottom"
BackSecondaryColor="White" Height="700px" Width="1800px" onload="Chart1_Load"
style="margin-top: 0px; margin-left: 10px; OVERFLOW-X:scroll;">
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
</asp:ChartArea>
</ChartAreas>
<Titles>
<asp:Title Alignment="TopCenter" Font="Verdana, 12pt, style=Bold" Name="Title1"
Text="Graph" ForeColor="Blue">
</asp:Title>
</Titles>
</asp:Chart>
as you can see I've added some css which I thought would make my chart scrollable:
OVERFLOW-X:scroll;
However, this doesn't work. I've also tried to encapsulate this chart in a div and make the div scrollable but that makes the chart extend out of the page. How can I make this chart scrollable within the page and still keep my chart dimensions (700px by 1800px)