FarPoint.Win.Chart Assembly > FarPoint.Win.Chart Namespace : AxisLocation Enumeration |
'Declaration Public Enum AxisLocation Inherits System.Enum
'Usage Dim instance As AxisLocation
public enum AxisLocation : System.Enum
Member | Description |
---|---|
Far | Displays axis on the far side of the plot area. |
Maximum | Display axis on the maximum value on other axis. |
Minimum | Display axis on the minimum value on other axis. |
Near | Displays axis on the near side of the plot area. |
Origin | Displays axis on the origin value on other axis. |
Value | Display axis on a specified value on other axis. |
FarPoint.Win.Chart.LineSeries series0 = new FarPoint.Win.Chart.LineSeries(); series0.YAxisId = 0; series0.Values.AddRange(new double[] { 22, 24, 23, 25 }); FarPoint.Win.Chart.BarSeries series1 = new FarPoint.Win.Chart.BarSeries(); series1.YAxisId = 1; series1.Values.AddRange(new double[] { 1000.0, 2000.0, 4000.0, 8000.0 }); FarPoint.Win.Chart.YPlotArea plotArea = new FarPoint.Win.Chart.YPlotArea(); plotArea.YAxes.Add(new FarPoint.Win.Chart.ValueAxis()); plotArea.YAxes[0].AxisId = 0; plotArea.YAxes[1].AxisId = 1; plotArea.YAxes[1].Location = FarPoint.Win.Chart.AxisLocation.Far; plotArea.Series.Add(series1); plotArea.Series.Add(series0); FarPoint.Win.Chart.ChartModel model = new FarPoint.Win.Chart.ChartModel(); model.PlotAreas.Add(plotArea); FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart(); chart.Size = new Size(200, 200); chart.Location = new Point(100, 100); chart.Model = model; fpSpread1.Sheets[0].Charts.Add(chart);
Dim series0 As New FarPoint.Win.Chart.LineSeries() series0.YAxisId = 0 series0.Values.AddRange(New Double() {22, 24, 23, 25}) Dim series1 As New FarPoint.Win.Chart.BarSeries() series1.YAxisId = 1 series1.Values.AddRange(New Double() {1000.0, 2000.0, 4000.0, 8000.0}) Dim plotArea As New FarPoint.Win.Chart.YPlotArea() plotArea.YAxes.Add(New FarPoint.Win.Chart.ValueAxis()) plotArea.YAxes(0).AxisId = 0 plotArea.YAxes(1).AxisId = 1 plotArea.YAxes(1).Location = FarPoint.Win.Chart.AxisLocation.Far plotArea.Series.Add(series1) plotArea.Series.Add(series0) Dim model As New FarPoint.Win.Chart.ChartModel() model.PlotAreas.Add(plotArea) Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart() chart.Size = New Size(200, 200) chart.Location = New Point(100, 100) chart.Model = model FpSpread1.Sheets(0).Charts.Add(chart)
System.Object
System.ValueType
System.Enum
FarPoint.Win.Chart.AxisLocation
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10