4,815
社区成员




<asp:Chart ID="Chart1" runat="server" ImageType="Jpeg" Width="980px">
<Legends>
<asp:Legend Docking="Top" Name="Legend1" Alignment="Far" BorderDashStyle="Solid">
</asp:Legend>
</Legends>
<BorderSkin BackColor="Gainsboro" SkinStyle="Emboss" />
<Titles>
<asp:Title Font="Microsoft Sans Serif, 12pt, style=Bold" Name="Title1" Text="话务量折线图"
TextStyle="Shadow">
</asp:Title>
</Titles>
<Series>
<asp:Series Name="预测话务量" Legend="Legend1" Color="DarkOrange" ShadowOffset="1" CustomProperties="PointWidth=0.5"
ChartType="Line" MarkerSize="10" MarkerStyle="Circle">
</asp:Series>
<asp:Series Name="实际话务量" Legend="Legend1" ChartType="Line" Color="Blue" ShadowOffset="1"
MarkerStyle="Circle" MarkerSize="10">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" ShadowOffset="1">
<AxisY Title="话务量" TitleAlignment="Far" ArrowStyle="Lines" LineColor="Blue">
<MinorTickMark IntervalOffsetType="Number" />
</AxisY>
<AxisX IntervalType="Auto" Interval="1" Title="日期" TitleAlignment="Far" ArrowStyle="Lines"
LineColor="Blue">
</AxisX>
</asp:ChartArea>
</ChartAreas>
</asp:Chart>