如何将标签系列更改为图表c#的90°(垂直)角度

时间:2017-05-31 16:44:34

标签: c#

我使用SQL Server 2008 Connection开发了带有动态数据的图表C#。标签系列位于水平位置,但我需要更改为垂直位置(90°)此代码构建了一个Web窗体并添加标签。

<asp:Chart ID="graf_hr_ralenti_vehiculo_mensual_comparativo" runat="server" Height="580px" Width="934px">
    <Series>
        <asp:Series CustomProperties="DrawingStyle=Cylinder" Legend="Legend1" Name="Series1" LabelAngle="90">
        </asp:Series>
        <asp:Series ChartArea="ChartArea1" CustomProperties="DrawingStyle=Cylinder" Legend="Legend1" Name="Series2">
        </asp:Series>
    </Series>
    <ChartAreas>
        <asp:ChartArea Name="ChartArea1">
            <AxisY IsLabelAutoFit="False" TextOrientation ="Auto"
                    TitleFont="Verdana, 10pt" Interval="Auto">
                    <LabelStyle Font="Microsoft Sans Serif" />
            </AxisY>

            <AxisX IsLabelAutoFit="false" LabelAutoFitMaxFontSize="10" 
                    LabelAutoFitMinFontSize="8" LabelAutoFitStyle="None" Interval="1">
                    <LabelStyle Angle ="90" Font="Microsoft Sans Serif" IsEndLabelVisible ="false" />                            
            </AxisX>
        </asp:ChartArea>
    </ChartAreas>
    <Legends>
        <asp:Legend Name="Legend1">
        </asp:Legend>
    </Legends>
</asp:Chart>

此代码C#将图例和工具提示添加到图表。我检查了图表的属性,但我找不到它!你能帮我吗!图片是我的图表现在,并告诉你我想组织

graf_hr_ralenti_vehiculo_mensual_comparativo.Titles.Add("Comparativa Vehiculos Ralenti Promedio \\n" + strmes + " VS " + strmes_comparativo).Font = new Font("Arial", 12, FontStyle.Bold);
graf_hr_ralenti_vehiculo_mensual_comparativo.ChartAreas["ChartArea1"].AxisX.MajorGrid.Enabled = false;
graf_hr_ralenti_vehiculo_mensual_comparativo.ChartAreas["ChartArea1"].AxisY.MajorGrid.Enabled = false;
graf_hr_ralenti_vehiculo_mensual_comparativo.Series["Series1"].ToolTip = "(#VALX, #VALY)";
graf_hr_ralenti_vehiculo_mensual_comparativo.Series["Series2"].ToolTip = "(#VALX, #VALY)";

graf_hr_ralenti_vehiculo_mensual_comparativo.Series["Series1"].LegendText = strmes;
graf_hr_ralenti_vehiculo_mensual_comparativo.Series["Series2"].LegendText = strmes_comparativo;

graf_hr_ralenti_vehiculo_mensual_comparativo.Legends["Legend1"].Title = "Segmentación";

感谢enter image description here

1 个答案:

答案 0 :(得分:0)

这是解决方案,进入属性选择&#34;系列&#34; \ SmartLabelStyle - False 然后选择Font \ LabelAngle -90。 谢谢你的帮助! enter image description here

enter image description here