2017-05-31 79 views
1

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

<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

+0

您可能需要禁用SmartLabelStyle。 – TaW

+0

谢谢,但SmartLabelStyle不控制标签的位置! –

+0

虽然它在标签上不会旋转,因为标签会足够聪明,以知道不需要旋转。默认值为'true'。随意测试它或至少[查看](https://msdn.microsoft.com/en-us/library/system.web.ui.datavisualization.charting.smartlabelstyle(v = vs.110)。 aspx).. – TaW

回答

0

这是解决方案,进入属性选择“系列” \ SmartLabelStyle - 假 然后选择字体\ LabelAngle - 90。 感谢您的帮助! enter image description here

enter image description here