0

I am using Microsoft Chart , Spline chart type . And I have months on X-Axis but it shows alternate months
ie; January , March, May....etc. But I need to show it in continuation. Though it has marker which shows for each month so that means its getting the value(I am guessing).
My aspx is :

<asp:Chart runat="server" Height="500px" Width="1100px" ID="Chart3"  >
                    <Series>
                        <asp:Series Name="Series1"  ChartType="Spline" MarkerStyle="Circle" MarkerColor="#0033CC" MarkerSize="15" BackGradientStyle="Center"></asp:Series>
                    </Series>
                    <ChartAreas>
                        <asp:ChartArea Name="ChartArea1"></asp:ChartArea>
                    </ChartAreas>
                </asp:Chart>

Please let me know how to do it , I have checked the properties but found nothing there.

mark
  • 623
  • 3
  • 21
  • 54

1 Answers1

0

I had the same issue. I am using MVC so the fix for me was

<ChartArea>
  <AxisX Interval='1'>
</ChartArea>
Richard Hubley
  • 2,180
  • 22
  • 29