Hello forum,
How can I make asp:chart be responsive when the window is minimized to mobile view?
HTML
<div class="charting row col-md-12" style="max-width: 100%; font-size: 9pt;">
<asp:Chart ID="Chart1" runat="server" Width="1000px" Height="220px">
<Series>
<asp:Series Name="template"
XValueMember="Items" YValueMembers="Figures" IsVisibleInLegend="true"
IsValueShownAsLabel="false" YValuesPerPoint="2" Color="#355171">
</asp:Series>
<asp:Series Name="uploads"
XValueMember="Items" YValueMembers="Figures" IsVisibleInLegend="true"
IsValueShownAsLabel="false" YValuesPerPoint="2" Color="#2e8b57">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
<AxisX LineColor="Gray">
<MajorGrid LineColor="Gray" />
</AxisX>
<AxisY LineColor="Gray">
<MajorGrid LineColor="Gray" />
</AxisY>
<Area3DStyle Enable3D="false" LightStyle="Realistic"></Area3DStyle>
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend>
</asp:Legend>
</Legends>
</asp:Chart>
</div>