AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
PolarChart_API.cs
1 /************************************************/
2 /* */
3 /* Copyright (c) 2018 - 2021 monitor1394 */
4 /* https://github.com/monitor1394 */
5 /* */
6 /************************************************/
7 
8 namespace XCharts
9 {
10  public partial class BaseChart
11  {
15  public Polar polar { get { return m_Polars.Count > 0 ? m_Polars[0] : null; } }
20  public AngleAxis angleAxis { get { return m_AngleAxes.Count > 0 ? m_AngleAxes[0] : null; } }
25  public RadiusAxis radiusAxis { get { return m_RadiusAxes.Count > 0 ? m_RadiusAxes[0] : null; } }
26  }
27 }
XCharts.AngleAxis
Angle axis of Polar Coordinate. 极坐标系的角度轴。
Definition: Axis.cs:1056
XCharts.Polar
Polar coordinate can be used in scatter and line chart. Every polar coordinate has an angleAxis and a...
Definition: Polar.cs:21
XCharts.BaseChart.radiusAxis
RadiusAxis? radiusAxis
Radial axis of polar coordinate. 极坐标系的径向轴。
Definition: PolarChart_API.cs:25
XCharts
Definition: RewardChart.cs:14
XCharts.BaseChart.polar
Polar? polar
极坐标。
Definition: PolarChart_API.cs:15
XCharts.RadiusAxis
Radial axis of polar coordinate. 极坐标系的径向轴。
Definition: Axis.cs:1027
XCharts.BaseChart.angleAxis
AngleAxis? angleAxis
Angle axis of Polar Coordinate. 极坐标系的角度轴。
Definition: PolarChart_API.cs:20