AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
XCharts.Radar.Indicator Class Reference

Indicator of radar chart, which is used to assign multiple variables(dimensions) in radar chart. 雷达图的指示器,用来指定雷达图中的多个变量(维度)。 More...

Public Member Functions

bool IsInRange (double value)
 

Properties

string name [get, set]
 The name of indicator. 指示器名称。 More...
 
double max [get, set]
 The maximum value of indicator, with default value of 0, but we recommend to set it manually. 指示器的最大值,默认为 0 无限制。 More...
 
double min [get, set]
 The minimum value of indicator, with default value of 0. 指示器的最小值,默认为 0 无限制。 More...
 
TextStyle textStyle [get, set]
 the style of text. 文本样式。 More...
 
Text text [get, set]
 the text conponent of indicator. 指示器的文本组件。 More...
 
double[] range [get, set]
 Normal range. When the value is outside this range, the display color is automatically changed. 正常值范围。当数值不在这个范围时,会自动变更显示颜色。 More...
 

Detailed Description

Indicator of radar chart, which is used to assign multiple variables(dimensions) in radar chart. 雷达图的指示器,用来指定雷达图中的多个变量(维度)。

Definition at line 54 of file Radar.cs.

Property Documentation

◆ max

double XCharts.Radar.Indicator.max
getset

The maximum value of indicator, with default value of 0, but we recommend to set it manually. 指示器的最大值,默认为 0 无限制。

Definition at line 71 of file Radar.cs.

71 { get { return m_Max; } set { m_Max = value; } }

◆ min

double XCharts.Radar.Indicator.min
getset

The minimum value of indicator, with default value of 0. 指示器的最小值,默认为 0 无限制。

Definition at line 76 of file Radar.cs.

76 { get { return m_Min; } set { m_Min = value; } }

◆ name

string XCharts.Radar.Indicator.name
getset

The name of indicator. 指示器名称。

Definition at line 66 of file Radar.cs.

66 { get { return FormatterHelper.TrimAndReplaceLine(m_Name); } set { m_Name = value; } }

◆ range

double [] XCharts.Radar.Indicator.range
getset

Normal range. When the value is outside this range, the display color is automatically changed. 正常值范围。当数值不在这个范围时,会自动变更显示颜色。

Definition at line 92 of file Radar.cs.

92  {
93  get { return m_Range; }
94  set { if (value != null && value.Length == 2) { m_Range = value; } }
95  }

◆ text

Text XCharts.Radar.Indicator.text
getset

the text conponent of indicator. 指示器的文本组件。

Definition at line 86 of file Radar.cs.

86 { get; set; }

◆ textStyle

TextStyle XCharts.Radar.Indicator.textStyle
getset

the style of text. 文本样式。

Definition at line 81 of file Radar.cs.

81 { get { return m_TextStyle; } set { m_TextStyle = value; } }

The documentation for this class was generated from the following file: