我目前正在做一个项目,我需要在今年的图表上显示 2011 年和 2012 年数据的合并版本。今年的图表按月显示。
这是我的数据。它来自程序,所以不用担心:
Date Value Coefficient
01/01/2011 15,6 0,1586
01/01/2012 17,88 0,1468
01/01/2013 11,92 0,1872
01/02/2013 1703,85 0,17
01/03/2013 1693,49 0,16
01/04/2013 1716,1 0,17
01/05/2013 1732,31 0,17
01/06/2013 1692,79 0,17
01/07/2013 1691,38 0,17
看到前两行是全年的合并,其余的逐月合并。值列应填充附加到主要 Y 轴的列系列。系数是连接到辅助 Y 轴的一条线。
我有这段代码,目前显示一切都搞砸了,每月间隔:
<asp:Chart ID="Chart4" runat="server" CssClass="Chart" BorderlineDashStyle="DashDotDot"
Palette="Pastel" DataSourceID="ObjectDataSource2" ImageStorageMode="UseImageLocation"
Height="650px">
<Series>
<asp:Series Name="value" XValueMember="date" Legend="Legend1"
YValueMembers="value" YValueType="Double" ChartArea="ChartArea1" Color="CornflowerBlue"
IsValueShownAsLabel="True" LabelFormat="{0:0.##}">
</asp:Series>
<asp:Series Name="coef" XValueMember="date" Legend="Legend1" YValueMembers="coefCost"
YValuesPerPoint="4" XValueType="Date" Color="YellowGreen" ChartType="Line" IsValueShownAsLabel="True"
MarkerColor="Green" MarkerStyle="Diamond" YAxisType="Secondary" YValueType="Double"
LabelFormat="{0:0.##\%}" BorderWidth="4" ChartArea="ChartArea1">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" BackColor="Transparent" ShadowOffset="5">
<AxisY Title="US$ / 1000">
<MajorGrid Enabled="False" />
<LabelStyle Format="{0:#,##0}" />
</AxisY>
<AxisX Interval="1" IntervalOffsetType="Months" IntervalType="Months">
<MajorGrid Enabled="False" IntervalOffsetType="Auto" IntervalType="Auto" />
<LabelStyle Interval="Auto" Format="{MMM/yy}" />
<ScaleBreakStyle Spacing="1" />
<ScaleView SizeType="Months" />
</AxisX>
<AxisX2>
<MinorGrid Enabled="True" />
<MajorTickMark Enabled="False" />
</AxisX2>
<AxisY2 Title="(%) Coef">
<MajorGrid Enabled="False" />
</AxisY2>
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend Name="Legend1" Alignment="Center" Docking="Bottom">
</asp:Legend>
</Legends>
<Titles>
<asp:Title Font="Arial Narrow, 14pt" Name="Title1">
</asp:Title>
</Titles>
</asp:Chart>
如您所见,我设置了 ObjectDataSource2 来填充系列,因此也填充图表。我已经尝试过弄乱间隔的东西和所有的东西,但我无法实现我想要的。
这是我到目前为止得到的照片:
http://i.imgur.com/frJ22ns.png
回顾一下:我需要这个图表来显示我从我的程序中带回来的东西。我知道问题出在轴的间隔属性中(每月间隔、间隔 = 1 等),但我似乎找不到解决方法。
如果有人经历过类似的事情并且可能有一些指示,那就太好了!
提前致谢!!!
[编辑]
我离我需要实现的目标更近了一点。
看看这张照片:
http://i.imgur.com/EFrjcQF.png
我将它添加到 X 轴(以及对属性的其他修改,但这就是诀窍):
<AxisX IntervalAutoMode="VariableCount" Interval="0">
...而且它本身“跳过”了几个月。现在不知道该去哪里,但我正在搜索从 MSDN 下载的 WebSamples 应用程序(找不到链接,很抱歉),也许那里有东西。