Reputation: 39
I am trying to show a chart control, it works fine in IE but it is throwing error "Website sent an invalid response" when loads up in Google Chrome. Suggestions are appreciated. Please help. Thank you. Below is the chart code:
<asp:Chart ID="Chart_1" runat="server" BorderlineColor="Black" style="top: 22px; left: 7000px; position: absolute; z-index: 1; bottom: 280px; width: 320px; height: 305px;" Visible="False">
<Titles>
<asp:Title Font="Lucida Sans Unicode, 11pt" Name="Title1"
Text="Calender Days to Make Repair">
</asp:Title>
</Titles>
<Series>
<asp:Series Name="Series1" ChartType="Line" Color="Black"></asp:Series>
</Series>
<BorderSkin SkinStyle="Emboss"></BorderSkin>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" BorderColor="64, 64, 64, 64" BorderDashStyle="Solid" BackSecondaryColor="White" BackColor="lightblue" ShadowColor="Transparent" BackGradientStyle="TopBottom" Area3DStyle-Enable3D="true">
<AxisX LineColor="Red">
<LabelStyle Font="Trebuchet MS, 8.25pt, style=Bold" />
<MajorGrid LineColor="LightGray" />
</AxisX>
<AxisY LineColor="Red">
<LabelStyle Font="Trebuchet MS, 8.25pt, style=Bold" />
<MajorGrid LineColor="LightGray" />
</AxisY>
<Area3DStyle Rotation="30" Perspective="30" Inclination="15" IsRightAngleAxes="False" WallWidth="0" IsClustered="False" />
</asp:ChartArea>
</ChartAreas>
</asp:Chart>
Upvotes: 0
Views: 51