¿Cómo giro la orientación de texto del texto X Axiz del control de gráfico de Microsoft ASP.NET? Estoy usando .NET 4..NET Chart Control - Rotación de texto de eje X
¿Esto se hace bajo la Serie?
¿Cómo giro la orientación de texto del texto X Axiz del control de gráfico de Microsoft ASP.NET? Estoy usando .NET 4..NET Chart Control - Rotación de texto de eje X
¿Esto se hace bajo la Serie?
MyChart.ChartAreas[0].AxisX.LabelStyle.Angle = -90; // Can vary from -90 to 90.
Si también necesita cambiar la orientación del texto de texto Valor en serie, se puede configurar de la siguiente manera:
MyChart.Series[0].SmartLabelStyle.Enabled = false;
MyChart.Series[0].LabelAngle = 90; // Can vary from -90 to 90;
Espero que esto sea útil para usted. :)