| ||
Introducing SharpPlot Your First Chart Recent Updates Sample Charts Tutorials General Tutorials Chart Tutorials SharpPlot Class Properties Methods Structures Enumerations Glossaries Active Charts VectorMath Class DBUtil Class Get SharpPlot Download SharpPlot Buying SharpPlot SharpPlot Support Upgrading from GraPL Release notes |
Reference > Style examples > Plain PieChart or Tower Plain PieChart or TowerPie labels are drawn without spider tags, and tower charts have all three axes drawn with the PlainAxis style. sp.PieChartStyle = PieChartStyles.ValueTags|PieChartStyles.Plain; sp.SetXLabels(new string[] {"Fred","Joe","Harry"}); sp.ValueTagStyle = ValueTagStyles.Inside; sp.SetValueFont("Arial",16,FontStyle.Bold,Color.Yellow); sp.SetLabelFont("Arial",18,Color.Black); sp.DrawPieChart(new int[] {7,5,3}); |