public RadarChart() { AxisX = new Axis(); AxisY = new Axis(); Hoverable = true; ShapeHoverBehavior = ShapeHoverBehavior.Dot; AlphaLabel = true; MinInnerRadius = 10; }
public ScatterChart() { AxisX = new Axis(); AxisY = new Axis(); Hoverable = true; ShapeHoverBehavior = ShapeHoverBehavior.Dot; AnimatesNewPoints = true; LineType = LineChartLineType.Bezier; DataToolTip = new DefaultScatterTooltip(); }
public BarChart() { AxisX = new Axis(); AxisY = new Axis {Separator = new Separator {Step = 1}}; Hoverable = true; ShapeHoverBehavior = ShapeHoverBehavior.Shape; IgnoresLastLabel = true; LineType = LineChartLineType.Bezier; MaxColumnWidth = 60; DefaultFillOpacity = 0.75; PerformanceConfiguration = new PerformanceConfiguration {Enabled = false}; }
public LineChart() { AxisX = new Axis(); AxisY = new Axis { Separator = {IsEnabled = false, Step = 1}, IsEnabled = false }; LineType = LineChartLineType.Bezier; Hoverable = true; ShapeHoverBehavior = ShapeHoverBehavior.Dot; }
public StackedBarChart() { AxisX = new Axis(); AxisY = new Axis {Separator = new Separator {Step = 1}}; Hoverable = true; AxisX.MinValue = 0d; ShapeHoverBehavior = ShapeHoverBehavior.Shape; IgnoresLastLabel = true; PerformanceConfiguration = new PerformanceConfiguration { Enabled = false }; LineType = LineChartLineType.Bezier; IndexTotals = new Dictionary<int, StackedBarHelper>(); MaxColumnWidth = 60; DefaultFillOpacity = 0.75; }
public PieChart() { AxisX = new Axis {FontWeight = FontWeights.Bold, FontSize = 11, FontFamily = new FontFamily("Calibri")}; AxisY = new Axis(); Hoverable = true; ShapeHoverBehavior = ShapeHoverBehavior.Shape; InnerRadius = 0; SlicePadding = 5; DrawPadding = 20; Background = Brushes.White; AnimatesNewPoints = true; PerformanceConfiguration = new PerformanceConfiguration {Enabled = false}; }