diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md
index 86fd8680..6eb1b21a 100644
--- a/Assets/XCharts/CHANGELOG.md
+++ b/Assets/XCharts/CHANGELOG.md
@@ -1,6 +1,7 @@
# 更新日志
+* (2020.07.01) 增加`PolarChart`极坐标图表
* (2020.06.25) 发布`v1.5.2`版本
* (2020.06.25) 修复`BarChart`在数值为`0`时还会绘制一小部分柱条的问题
* (2020.06.24) 修复`PieChart`在设置`clockwise`后绘制异常的问题#65
diff --git a/Assets/XCharts/Editor/PolarChartEditor.cs b/Assets/XCharts/Editor/PolarChartEditor.cs
new file mode 100644
index 00000000..3c8e4d00
--- /dev/null
+++ b/Assets/XCharts/Editor/PolarChartEditor.cs
@@ -0,0 +1,40 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEditor;
+
+namespace XCharts
+{
+ ///
+ /// Editor class used to edit UI PolarChart.
+ ///
+
+ [CustomEditor(typeof(PolarChart), false)]
+ public class PolarChartEditor : BaseChartEditor
+ {
+ protected SerializedProperty m_Polar;
+ protected SerializedProperty m_RadiusAxis;
+ protected SerializedProperty m_AngleAxis;
+
+ protected override void OnEnable()
+ {
+ base.OnEnable();
+ m_Target = (PolarChart)target;
+ m_Polar = serializedObject.FindProperty("m_Polar");
+ m_RadiusAxis = serializedObject.FindProperty("m_RadiusAxis");
+ m_AngleAxis = serializedObject.FindProperty("m_AngleAxis");
+ }
+
+ protected override void OnStartInspectorGUI()
+ {
+ base.OnStartInspectorGUI();
+ EditorGUILayout.PropertyField(m_Polar, true);
+ EditorGUILayout.PropertyField(m_RadiusAxis, true);
+ EditorGUILayout.PropertyField(m_AngleAxis, true);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Editor/PolarChartEditor.cs.meta b/Assets/XCharts/Editor/PolarChartEditor.cs.meta
new file mode 100644
index 00000000..1957252b
--- /dev/null
+++ b/Assets/XCharts/Editor/PolarChartEditor.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 157ef5f1d75e04aa1814e0b188591912
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Editor/PropertyDrawers/AngleAxisDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/AngleAxisDrawer.cs
new file mode 100644
index 00000000..76c1e8ab
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/AngleAxisDrawer.cs
@@ -0,0 +1,40 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEditor;
+using UnityEngine;
+
+namespace XCharts
+{
+ [CustomPropertyDrawer(typeof(AngleAxis), true)]
+ public class AngleAxisDrawer : AxisDrawer
+ {
+ protected override void DrawExtended(ref Rect drawRect, SerializedProperty prop)
+ {
+ SerializedProperty m_StartAngle = prop.FindPropertyRelative("m_StartAngle");
+ //SerializedProperty m_Clockwise = prop.FindPropertyRelative("m_Clockwise");
+ EditorGUI.PropertyField(drawRect, m_StartAngle);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ //EditorGUI.PropertyField(drawRect, m_Clockwise);
+ //drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ }
+
+ protected override string GetDisplayName(string displayName)
+ {
+ if (displayName.StartsWith("Element"))
+ {
+ displayName = displayName.Replace("Element", "Angle Axis");
+ }
+ return displayName;
+ }
+
+ protected override float GetExtendedHeight()
+ {
+ return 1 * EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Editor/PropertyDrawers/AngleAxisDrawer.cs.meta b/Assets/XCharts/Editor/PropertyDrawers/AngleAxisDrawer.cs.meta
new file mode 100644
index 00000000..993985d5
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/AngleAxisDrawer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 521ea44136ea74a2f82a4c0c46edfd32
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Editor/PropertyDrawers/AxisDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/AxisDrawer.cs
index ae1209ed..6a244a62 100644
--- a/Assets/XCharts/Editor/PropertyDrawers/AxisDrawer.cs
+++ b/Assets/XCharts/Editor/PropertyDrawers/AxisDrawer.cs
@@ -100,6 +100,7 @@ namespace XCharts
drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
EditorGUI.PropertyField(drawRect, m_BoundaryGap);
drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ DrawExtended(ref drawRect, prop);
EditorGUI.PropertyField(drawRect, m_AxisLine);
drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
drawRect.y += EditorGUI.GetPropertyHeight(m_AxisLine);
@@ -133,6 +134,11 @@ namespace XCharts
}
}
+ protected virtual void DrawExtended(ref Rect drawRect, SerializedProperty prop)
+ {
+
+ }
+
public override float GetPropertyHeight(SerializedProperty prop, GUIContent label)
{
int index = InitToggle(prop);
@@ -195,10 +201,16 @@ namespace XCharts
height += EditorGUI.GetPropertyHeight(m_AxisLabel);
height += EditorGUI.GetPropertyHeight(m_SplitArea);
height += EditorGUI.GetPropertyHeight(m_SplitLine);
+ height += GetExtendedHeight();
return height;
}
}
+ protected virtual float GetExtendedHeight()
+ {
+ return 0;
+ }
+
private int InitToggle(SerializedProperty prop)
{
int index = 0;
diff --git a/Assets/XCharts/Editor/PropertyDrawers/PolarDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/PolarDrawer.cs
new file mode 100644
index 00000000..3be62a3c
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/PolarDrawer.cs
@@ -0,0 +1,49 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEditor;
+using UnityEngine;
+
+namespace XCharts
+{
+ [CustomPropertyDrawer(typeof(Polar), true)]
+ public class PolarDrawer : PropertyDrawer
+ {
+ private bool m_PolarModuleToggle = false;
+
+ public override void OnGUI(Rect pos, SerializedProperty prop, GUIContent label)
+ {
+ Rect drawRect = pos;
+ drawRect.height = EditorGUIUtility.singleLineHeight;
+ SerializedProperty show = prop.FindPropertyRelative("m_Show");
+ SerializedProperty m_Center = prop.FindPropertyRelative("m_Center");
+ SerializedProperty m_Radius = prop.FindPropertyRelative("m_Radius");
+ SerializedProperty m_BackgroundColor = prop.FindPropertyRelative("m_BackgroundColor");
+
+ ChartEditorHelper.MakeFoldout(ref drawRect, ref m_PolarModuleToggle, "Polar", show);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ if (m_PolarModuleToggle)
+ {
+ EditorGUI.indentLevel++;
+ ChartEditorHelper.MakeTwoField(ref drawRect, pos.width, m_Center, "Center");
+ EditorGUI.PropertyField(drawRect, m_Radius);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ EditorGUI.PropertyField(drawRect, m_BackgroundColor);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ EditorGUI.indentLevel--;
+ }
+ }
+
+ public override float GetPropertyHeight(SerializedProperty prop, GUIContent label)
+ {
+ if (m_PolarModuleToggle)
+ return 4 * EditorGUIUtility.singleLineHeight + 3 * EditorGUIUtility.standardVerticalSpacing;
+ else
+ return EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Editor/PropertyDrawers/PolarDrawer.cs.meta b/Assets/XCharts/Editor/PropertyDrawers/PolarDrawer.cs.meta
new file mode 100644
index 00000000..35d024ba
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/PolarDrawer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 48ff9465776e54e749f9ff8c424bafe2
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Editor/PropertyDrawers/RadiusAxisDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/RadiusAxisDrawer.cs
new file mode 100644
index 00000000..3b86e7f6
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/RadiusAxisDrawer.cs
@@ -0,0 +1,24 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEditor;
+
+namespace XCharts
+{
+ [CustomPropertyDrawer(typeof(RadiusAxis), true)]
+ public class RadiusAxisDrawer : AxisDrawer
+ {
+ protected override string GetDisplayName(string displayName)
+ {
+ if (displayName.StartsWith("Element"))
+ {
+ displayName = displayName.Replace("Element", "Radius Axis");
+ }
+ return displayName;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Editor/PropertyDrawers/RadiusAxisDrawer.cs.meta b/Assets/XCharts/Editor/PropertyDrawers/RadiusAxisDrawer.cs.meta
new file mode 100644
index 00000000..9d0b08e7
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/RadiusAxisDrawer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 433e6c679c39c4bf988a0447fd2e3775
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Editor/XChartEditor.cs b/Assets/XCharts/Editor/XChartEditor.cs
index ee22523e..3aa23e35 100644
--- a/Assets/XCharts/Editor/XChartEditor.cs
+++ b/Assets/XCharts/Editor/XChartEditor.cs
@@ -127,5 +127,12 @@ namespace XCharts
{
AddChart("RingChart");
}
+
+ [MenuItem("XCharts/PolarChart", priority = 52)]
+ [MenuItem("GameObject/XCharts/PolarChart", priority = 52)]
+ public static void AddPolarChart()
+ {
+ AddChart("PolarChart");
+ }
}
}
\ No newline at end of file
diff --git a/Assets/XCharts/Examples/Runtime/Example80_Polar.cs b/Assets/XCharts/Examples/Runtime/Example80_Polar.cs
new file mode 100644
index 00000000..de71f0d2
--- /dev/null
+++ b/Assets/XCharts/Examples/Runtime/Example80_Polar.cs
@@ -0,0 +1,57 @@
+using System.Runtime.InteropServices;
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+
+using UnityEngine;
+
+namespace XCharts.Examples
+{
+ [DisallowMultipleComponent]
+ [ExecuteInEditMode]
+ public class Example80_Polar : MonoBehaviour
+ {
+ private PolarChart chart;
+ private float updateTime;
+
+ void Awake()
+ {
+ chart = gameObject.GetComponent();
+ if (chart == null)
+ {
+ chart = gameObject.AddComponent();
+ }
+ }
+
+ void Update()
+ {
+ if (Input.GetKeyDown(KeyCode.Space))
+ {
+ AddData();
+ }
+ }
+
+ void AddData()
+ {
+ chart.RemoveData();
+ chart.angleAxis.type = Axis.AxisType.Value;
+ chart.angleAxis.minMaxType = Axis.AxisMinMaxType.Custom;
+ chart.angleAxis.min = 0;
+ chart.angleAxis.max = 360;
+ chart.angleAxis.startAngle = Random.Range(0,90);
+ chart.AddSerie(SerieType.Line, "line1");
+
+ var rate = Random.Range(1, 4);
+ for (int i = 0; i <= 360; i++)
+ {
+ var t = i / 180f * Mathf.PI;
+ var r = Mathf.Sin(2 * t) * Mathf.Cos(2 * t) * rate;
+ chart.AddData(0, Mathf.Abs(r), i);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Examples/Runtime/Example80_Polar.cs.meta b/Assets/XCharts/Examples/Runtime/Example80_Polar.cs.meta
new file mode 100644
index 00000000..ea734cf4
--- /dev/null
+++ b/Assets/XCharts/Examples/Runtime/Example80_Polar.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: ca29783da761a4e0e9c5204d5b24b610
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Runtime/API/PolarChart_API.cs b/Assets/XCharts/Runtime/API/PolarChart_API.cs
new file mode 100644
index 00000000..18347905
--- /dev/null
+++ b/Assets/XCharts/Runtime/API/PolarChart_API.cs
@@ -0,0 +1,30 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace XCharts
+{
+ public partial class PolarChart
+ {
+ ///
+ /// 极坐标。
+ ///
+ public Polar polar { get { return m_Polar; } }
+ ///
+ /// Angle axis of Polar Coordinate.
+ /// 极坐标系的角度轴。
+ ///
+ public AngleAxis angleAxis { get { return m_AngleAxis; } }
+ ///
+ /// Radial axis of polar coordinate.
+ /// 极坐标系的径向轴。
+ ///
+ public RadiusAxis radiusAxis { get { return m_RadiusAxis; } }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/API/PolarChart_API.cs.meta b/Assets/XCharts/Runtime/API/PolarChart_API.cs.meta
new file mode 100644
index 00000000..352ff64a
--- /dev/null
+++ b/Assets/XCharts/Runtime/API/PolarChart_API.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 42960f04fcc2442baa061d32386aaaa8
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Runtime/Component/Main/Axis.cs b/Assets/XCharts/Runtime/Component/Main/Axis.cs
index 26b9eeaa..0b63f5e4 100644
--- a/Assets/XCharts/Runtime/Component/Main/Axis.cs
+++ b/Assets/XCharts/Runtime/Component/Main/Axis.cs
@@ -805,4 +805,86 @@ namespace XCharts
}
}
}
+
+ ///
+ /// Radial axis of polar coordinate.
+ /// 极坐标系的径向轴。
+ ///
+ [System.Serializable]
+ public class RadiusAxis : Axis
+ {
+ public static RadiusAxis defaultRadiusAxis
+ {
+ get
+ {
+ var axis = new RadiusAxis
+ {
+ m_Show = true,
+ m_Type = AxisType.Value,
+ m_Min = 0,
+ m_Max = 0,
+ m_SplitNumber = 5,
+ m_BoundaryGap = false,
+ m_Data = new List(5),
+ };
+ axis.splitLine.show = true;
+ axis.splitLine.lineStyle.type = LineStyle.Type.Solid;
+ axis.axisLabel.textLimit.enable = false;
+ return axis;
+ }
+ }
+ }
+
+ ///
+ /// Angle axis of Polar Coordinate.
+ /// 极坐标系的角度轴。
+ ///
+ [System.Serializable]
+ public class AngleAxis : Axis
+ {
+ [SerializeField] private float m_StartAngle = 90;
+ [SerializeField] private bool m_Clockwise = true;
+ ///
+ /// Starting angle of axis. 90 degrees by default, standing for top position of center. 0 degree stands for right position of center.
+ /// 起始刻度的角度,默认为 90 度,即圆心的正上方。0 度为圆心的正右方。
+ ///
+ public float startAngle
+ {
+ get { return m_StartAngle; }
+ set { if (PropertyUtility.SetStruct(ref m_StartAngle, value)) SetAllDirty(); }
+ }
+ ///
+ /// Whether the positive position of axis is in clockwise. True for clockwise by default.
+ /// 刻度增长是否按顺时针,默认顺时针。
+ ///
+ public bool clockWise
+ {
+ get { return m_Clockwise; }
+ set { if (PropertyUtility.SetStruct(ref m_Clockwise, value)) SetAllDirty(); }
+ }
+
+ public float runtimeStartAngle { get; set; }
+
+ public static AngleAxis defaultAngleAxis
+ {
+ get
+ {
+ var axis = new AngleAxis
+ {
+ m_Show = true,
+ m_Type = AxisType.Value,
+ m_SplitNumber = 13,
+ m_BoundaryGap = false,
+ m_Data = new List(13),
+ };
+ axis.splitLine.show = true;
+ axis.splitLine.lineStyle.type = LineStyle.Type.Solid;
+ axis.axisLabel.textLimit.enable = false;
+ axis.minMaxType = AxisMinMaxType.Custom;
+ axis.min = 0;
+ axis.max = 360;
+ return axis;
+ }
+ }
+ }
}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/Component/Main/Polar.cs b/Assets/XCharts/Runtime/Component/Main/Polar.cs
new file mode 100644
index 00000000..fc42d5d4
--- /dev/null
+++ b/Assets/XCharts/Runtime/Component/Main/Polar.cs
@@ -0,0 +1,92 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using System;
+using UnityEngine;
+
+namespace XCharts
+{
+ ///
+ /// Polar coordinate can be used in scatter and line chart. Every polar coordinate has an angleAxis and a radiusAxis.
+ ///
+ /// 极坐标系组件。
+ /// 极坐标系,可以用于散点图和折线图。每个极坐标系拥有一个角度轴和一个半径轴。
+ ///
+ ///
+ [Serializable]
+ public class Polar : MainComponent
+ {
+ [SerializeField] private bool m_Show = true;
+ [SerializeField] private float[] m_Center = new float[2] { 0.5f, 0.5f };
+ [SerializeField] private float m_Radius = 100;
+ [SerializeField] private Color m_BackgroundColor;
+
+
+ ///
+ /// Whether to show the grid in rectangular coordinate.
+ /// 是否显示直角坐标系网格。
+ ///
+ public bool show
+ {
+ get { return m_Show; }
+ set { if (PropertyUtility.SetStruct(ref m_Show, value)) SetVerticesDirty(); }
+ }
+ ///
+ /// the center of ploar.
+ /// 极坐标的中心点。数组的第一项是横坐标,第二项是纵坐标。
+ /// 当值为0-1之间时表示百分比,设置成百分比时第一项是相对于容器宽度,第二项是相对于容器高度。
+ ///
+ public float[] center
+ {
+ get { return m_Center; }
+ set { if (value != null) { m_Center = value; SetAllDirty(); } }
+ }
+ ///
+ /// the radius of polar.
+ /// 极坐标的半径。
+ ///
+ public float radius
+ {
+ get { return m_Radius; }
+ set { if (PropertyUtility.SetStruct(ref m_Radius, value)) SetAllDirty(); }
+ }
+ ///
+ /// Background color of polar, which is transparent by default.
+ /// 极坐标的背景色,默认透明。
+ ///
+ public Color backgroundColor
+ {
+ get { return m_BackgroundColor; }
+ set { if (PropertyUtility.SetColor(ref m_BackgroundColor, value)) SetVerticesDirty(); }
+ }
+
+ ///
+ /// the center position of polar in container.
+ /// 极坐标在容器中的具体中心点。
+ ///
+ public Vector3 runtimeCenterPos { get; internal set; }
+ ///
+ /// the true radius of polar.
+ /// 极坐标的运行时实际半径。
+ ///
+ public float runtimeRadius { get; internal set; }
+ public static Polar defaultPolar
+ {
+ get
+ {
+ var polar = new Polar
+ {
+ m_Show = true,
+ m_Radius = 0.35f,
+ };
+ polar.center[0] = 0.5f;
+ polar.center[1] = 0.45f;
+ return polar;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/Component/Main/Polar.cs.meta b/Assets/XCharts/Runtime/Component/Main/Polar.cs.meta
new file mode 100644
index 00000000..54369aec
--- /dev/null
+++ b/Assets/XCharts/Runtime/Component/Main/Polar.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: f9eb9ba0a1d154f11ba169fc07ad7a91
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Runtime/Component/Main/Tooltip.cs b/Assets/XCharts/Runtime/Component/Main/Tooltip.cs
index e7396170..1600e566 100644
--- a/Assets/XCharts/Runtime/Component/Main/Tooltip.cs
+++ b/Assets/XCharts/Runtime/Component/Main/Tooltip.cs
@@ -249,6 +249,10 @@ namespace XCharts
/// 提示框的gameObject。
///
public GameObject runtimeGameObject { get { return m_GameObject; } }
+ ///
+ /// 当前指示的角度。
+ ///
+ public float runtimeAngle { get; internal set; }
public static Tooltip defaultTooltip
{
@@ -389,7 +393,7 @@ namespace XCharts
///
public void SetActive(bool flag)
{
- if(!flag && m_AlwayShow) return;
+ if (!flag && m_AlwayShow) return;
lastDataIndex[0] = lastDataIndex[1] = -1;
if (m_GameObject && m_GameObject.activeInHierarchy != flag)
m_GameObject.SetActive(flag);
diff --git a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs
index 2457d5ac..52f90eaa 100644
--- a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs
+++ b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs
@@ -167,6 +167,7 @@ namespace XCharts
///
public float runtimePieOffsetRadius { get; internal set; }
public Vector3 runtimePosition { get; internal set; }
+ public float runtimeAngle { get; internal set; }
public Vector3 runtiemPieOffsetCenter { get; internal set; }
private List m_PreviousData = new List();
private List m_DataUpdateTime = new List();
diff --git a/Assets/XCharts/Runtime/Internal/Helper/AxisHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/AxisHelper.cs
index 75d23db1..a1b720c9 100644
--- a/Assets/XCharts/Runtime/Internal/Helper/AxisHelper.cs
+++ b/Assets/XCharts/Runtime/Internal/Helper/AxisHelper.cs
@@ -6,6 +6,7 @@
/******************************************/
using System.Text;
using UnityEngine;
+using UnityEngine.UI;
namespace XCharts
{
@@ -165,7 +166,7 @@ namespace XCharts
///
///
///
- internal static int GetScaleNumber(Axis axis, float coordinateWidth, DataZoom dataZoom)
+ internal static int GetScaleNumber(Axis axis, float coordinateWidth, DataZoom dataZoom = null)
{
if (axis.type == Axis.AxisType.Value || axis.type == Axis.AxisType.Log)
{
@@ -190,7 +191,7 @@ namespace XCharts
///
///
///
- internal static float GetScaleWidth(Axis axis, float coordinateWidth, int index, DataZoom dataZoom)
+ internal static float GetScaleWidth(Axis axis, float coordinateWidth, int index, DataZoom dataZoom = null)
{
int num = GetScaleNumber(axis, coordinateWidth, dataZoom) - 1;
if (num <= 0) num = 1;
@@ -285,5 +286,49 @@ namespace XCharts
else if (axis.IsValue() && axis.runtimeMinValue == 0 && axis.runtimeMaxValue == 0) return false;
else return true;
}
+
+ internal static void AdjustCircleLabelPos(Text txt, Vector3 pos, Vector3 cenPos, float txtHig, Vector3 offset)
+ {
+ var txtWidth = txt.preferredWidth;
+ var sizeDelta = new Vector2(txtWidth, txt.preferredHeight);
+ txt.GetComponent().sizeDelta = sizeDelta;
+ var diff = pos.x - cenPos.x;
+ if (diff < -1f) //left
+ {
+ pos = new Vector3(pos.x - txtWidth / 2, pos.y);
+ }
+ else if (diff > 1f) //right
+ {
+ pos = new Vector3(pos.x + txtWidth / 2, pos.y);
+ }
+ else
+ {
+ float y = pos.y > cenPos.y ? pos.y + txtHig / 2 : pos.y - txtHig / 2;
+ pos = new Vector3(pos.x, y);
+ }
+ txt.transform.localPosition = pos + offset;
+ }
+
+ internal static void AdjustRadiusAxisLabelPos(Text txt, Vector3 pos, Vector3 cenPos, float txtHig, Vector3 offset)
+ {
+ var txtWidth = txt.preferredWidth;
+ var sizeDelta = new Vector2(txtWidth, txt.preferredHeight);
+ txt.GetComponent().sizeDelta = sizeDelta;
+ var diff = pos.y - cenPos.y;
+ if (diff > 20f) //left
+ {
+ pos = new Vector3(pos.x - txtWidth / 2, pos.y);
+ }
+ else if (diff < -20f) //right
+ {
+ pos = new Vector3(pos.x + txtWidth / 2, pos.y);
+ }
+ else
+ {
+ float y = pos.y > cenPos.y ? pos.y + txtHig / 2 : pos.y - txtHig / 2;
+ pos = new Vector3(pos.x, y);
+ }
+ txt.transform.localPosition = pos;
+ }
}
}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/Internal/Helper/PolarHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/PolarHelper.cs
new file mode 100644
index 00000000..589e6b72
--- /dev/null
+++ b/Assets/XCharts/Runtime/Internal/Helper/PolarHelper.cs
@@ -0,0 +1,34 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEngine;
+
+namespace XCharts
+{
+ internal static class PolarHelper
+ {
+ internal static void UpdatePolarCenter(Polar polar, Vector3 chartPosition, float chartWidth, float chartHeight)
+ {
+ if (polar.center.Length < 2) return;
+ var centerX = polar.center[0] <= 1 ? chartWidth * polar.center[0] : polar.center[0];
+ var centerY = polar.center[1] <= 1 ? chartHeight * polar.center[1] : polar.center[1];
+ polar.runtimeCenterPos = chartPosition + new Vector3(centerX, centerY);
+ if (polar.radius <= 0)
+ {
+ polar.runtimeRadius = 0;
+ }
+ else if (polar.radius <= 1)
+ {
+ polar.runtimeRadius = Mathf.Min(chartWidth, chartHeight) * polar.radius;
+ }
+ else
+ {
+ polar.runtimeRadius = polar.radius;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/Internal/Helper/PolarHelper.cs.meta b/Assets/XCharts/Runtime/Internal/Helper/PolarHelper.cs.meta
new file mode 100644
index 00000000..6833e7a8
--- /dev/null
+++ b/Assets/XCharts/Runtime/Internal/Helper/PolarHelper.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 64e494d13836f430ea7f4fe3e2a716b0
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Runtime/Internal/Helper/SerieHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/SerieHelper.cs
index 601d0abc..97dd2d49 100644
--- a/Assets/XCharts/Runtime/Internal/Helper/SerieHelper.cs
+++ b/Assets/XCharts/Runtime/Internal/Helper/SerieHelper.cs
@@ -286,8 +286,16 @@ namespace XCharts
if (value < min) min = value;
}
}
- serie.runtimeDataMin = ChartHelper.GetMinDivisibleValue(min, ceilRate);
- serie.runtimeDataMax = ChartHelper.GetMaxDivisibleValue(max, ceilRate);
+ if (ceilRate < 0)
+ {
+ serie.runtimeDataMin = min;
+ serie.runtimeDataMax = max;
+ }
+ else
+ {
+ serie.runtimeDataMin = ChartHelper.GetMinDivisibleValue(min, ceilRate);
+ serie.runtimeDataMax = ChartHelper.GetMaxDivisibleValue(max, ceilRate);
+ }
}
public static void GetAllMinMaxData(Serie serie, int ceilRate = 0, DataZoom dataZoom = null)
diff --git a/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs
index 8e1ba3d1..80136452 100644
--- a/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs
+++ b/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs
@@ -181,6 +181,48 @@ namespace XCharts
tooltip.UpdateContentPos(pos);
}
+ public static string GetPolarFormatterContent(Tooltip tooltip, Series series, ThemeInfo themeInfo)
+ {
+ if (string.IsNullOrEmpty(tooltip.formatter))
+ {
+ var sb = ChartHelper.sb;
+ sb.Length = 0;
+ sb.Append(tooltip.runtimeAngle).Append("\n");
+ foreach (var serie in series.list)
+ {
+ if (serie.show && IsSelectedSerie(tooltip, serie.index))
+ {
+ var dataIndexList = tooltip.runtimeSerieIndex[serie.index];
+ for (int i = 0; i < dataIndexList.Count; i++)
+ {
+ var dataIndex = dataIndexList[i];
+ var serieData = serie.GetSerieData(dataIndex);
+ var numericFormatter = GetItemNumericFormatter(tooltip, serie, serieData);
+ float xValue, yValue;
+ serie.GetXYData(dataIndex, null, out xValue, out yValue);
+
+ sb.Append("● ");
+ if (!string.IsNullOrEmpty(serie.name))
+ sb.Append(serie.name).Append(": ");
+ sb.AppendFormat("{0}", ChartCached.FloatToStr(xValue, numericFormatter));
+ if (i != dataIndexList.Count - 1)
+ {
+ sb.Append("\n");
+ }
+ }
+ sb.Append("\n");
+ }
+ }
+ return sb.ToString().Trim();
+ }
+ else
+ {
+ string content = tooltip.formatter;
+ FormatterHelper.ReplaceContent(ref content, 0, tooltip.numericFormatter, null, series, themeInfo, null, null);
+ return content;
+ }
+ }
+
public static string GetFormatterContent(Tooltip tooltip, int dataIndex, Series series, ThemeInfo themeInfo,
string category = null, DataZoom dataZoom = null, bool isCartesian = false)
{
diff --git a/Assets/XCharts/Runtime/PolarChart.cs b/Assets/XCharts/Runtime/PolarChart.cs
new file mode 100644
index 00000000..0a925bf0
--- /dev/null
+++ b/Assets/XCharts/Runtime/PolarChart.cs
@@ -0,0 +1,592 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEngine;
+using UnityEngine.UI;
+
+namespace XCharts
+{
+ [AddComponentMenu("XCharts/PolarChart", 21)]
+ [ExecuteInEditMode]
+ [RequireComponent(typeof(RectTransform))]
+ [DisallowMultipleComponent]
+ public partial class PolarChart : BaseChart
+ {
+ [SerializeField] Polar m_Polar = Polar.defaultPolar;
+ [SerializeField] private RadiusAxis m_RadiusAxis = RadiusAxis.defaultRadiusAxis;
+ [SerializeField] private AngleAxis m_AngleAxis = AngleAxis.defaultAngleAxis;
+
+ private bool m_CheckMinMaxValue = false;
+
+ protected override void Awake()
+ {
+ base.Awake();
+ m_CheckMinMaxValue = false;
+ CheckMinMaxValue();
+ UpdateRuntimeValue();
+ InitRadiusAxis(m_RadiusAxis);
+ InitAngleAxis(m_AngleAxis);
+ m_Tooltip.UpdateToTop();
+ }
+
+
+#if UNITY_EDITOR
+ protected override void Reset()
+ {
+ base.Reset();
+ m_Title.text = "PolarChart";
+ m_Tooltip.type = Tooltip.Type.Line;
+ RemoveData();
+ ResetValuePolar();
+ Awake();
+ }
+
+ private void ResetValuePolar()
+ {
+ m_AngleAxis.type = Axis.AxisType.Value;
+ m_AngleAxis.minMaxType = Axis.AxisMinMaxType.Custom;
+ m_AngleAxis.min = 0;
+ m_AngleAxis.max = 360;
+ AddSerie(SerieType.Line, "line1");
+ for (int i = 0; i <= 360; i++)
+ {
+ var t = i / 180f * Mathf.PI;
+ var r = Mathf.Sin(2 * t) * Mathf.Cos(2 * t) * 2;
+ AddData(0, Mathf.Abs(r), i);
+ }
+ }
+
+ private void ResetCategoryPolar()
+ {
+ m_AngleAxis.type = Axis.AxisType.Category;
+ AddSerie(SerieType.Bar, "line1");
+ for (int i = 0; i <= 13; i++)
+ {
+ m_AngleAxis.AddData("bar" + i);
+ AddData(0, Random.Range(0, 10));
+ }
+ }
+
+ protected override void OnValidate()
+ {
+ base.OnValidate();
+ m_RadiusAxis.SetAllDirty();
+ m_AngleAxis.SetAllDirty();
+ CheckMinMaxValue();
+ }
+#endif
+
+ protected override void CheckComponent()
+ {
+ if (m_Polar.anyDirty)
+ {
+ if (m_Polar.componentDirty)
+ {
+ m_AngleAxis.SetComponentDirty();
+ m_RadiusAxis.SetComponentDirty();
+ }
+ if (m_Polar.vertsDirty) RefreshChart();
+ m_Polar.ClearDirty();
+ }
+ if (m_AngleAxis.anyDirty || m_RadiusAxis.anyDirty)
+ {
+ if (m_AngleAxis.componentDirty || m_RadiusAxis.componentDirty)
+ {
+ UpdateRuntimeValue();
+ InitAngleAxis(m_AngleAxis);
+ InitRadiusAxis(m_RadiusAxis);
+ }
+ if (m_AngleAxis.vertsDirty || m_RadiusAxis.vertsDirty) RefreshChart();
+ m_AngleAxis.ClearDirty();
+ m_RadiusAxis.ClearDirty();
+ }
+ base.CheckComponent();
+ }
+
+ protected override void OnSizeChanged()
+ {
+ base.OnSizeChanged();
+ m_RadiusAxis.SetAllDirty();
+ m_AngleAxis.SetAllDirty();
+ UpdateRuntimeValue();
+ }
+
+ private void InitRadiusAxis(RadiusAxis axis)
+ {
+ PolarHelper.UpdatePolarCenter(m_Polar, m_ChartPosition, m_ChartWidth, m_ChartHeight);
+ var radius = m_Polar.runtimeRadius;
+ axis.axisLabelTextList.Clear();
+ string objName = "axis_radius";
+ var axisObj = ChartHelper.AddObject(objName, transform, chartAnchorMin,
+ chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight));
+ axisObj.transform.localPosition = Vector3.zero;
+ axisObj.SetActive(axis.show && axis.axisLabel.show);
+ axisObj.hideFlags = chartHideFlags;
+ ChartHelper.HideAllObject(axisObj);
+ var labelColor = ChartHelper.IsClearColor(axis.axisLabel.color) ?
+ (Color)m_ThemeInfo.axisTextColor :
+ axis.axisLabel.color;
+ int splitNumber = AxisHelper.GetSplitNumber(axis, radius, null);
+ float totalWidth = 0;
+ var startAngle = m_AngleAxis.runtimeStartAngle;
+ var cenPos = m_Polar.runtimeCenterPos;
+ var txtHig = axis.axisLabel.fontSize + 2;
+ var dire = ChartHelper.GetDire(startAngle, true).normalized;
+ var tickVetor = ChartHelper.GetVertialDire(dire) * (m_RadiusAxis.axisTick.length + m_RadiusAxis.axisLabel.margin);
+ for (int i = 0; i < splitNumber; i++)
+ {
+ float labelWidth = AxisHelper.GetScaleWidth(axis, radius, i, null);
+ bool inside = axis.axisLabel.inside;
+ Text txt = ChartHelper.AddTextObject(objName + i, axisObj.transform,
+ m_ThemeInfo.font, labelColor, TextAnchor.MiddleCenter, new Vector2(0.5f, 0.5f),
+ new Vector2(0.5f, 0.5f), new Vector2(0.5f, 0.5f), new Vector2(labelWidth, txtHig),
+ axis.axisLabel.fontSize, axis.axisLabel.rotate, axis.axisLabel.fontStyle);
+ if (i == 0) axis.axisLabel.SetRelatedText(txt, labelWidth);
+ var isPercentStack = SeriesHelper.IsPercentStack(m_Series, SerieType.Bar);
+ txt.text = AxisHelper.GetLabelName(axis, radius, i, axis.runtimeMinValue, axis.runtimeMaxValue, null,
+ isPercentStack);
+ txt.gameObject.SetActive(axis.show &&
+ (axis.axisLabel.interval == 0 || i % (axis.axisLabel.interval + 1) == 0));
+ var pos = ChartHelper.GetPos(cenPos, totalWidth, startAngle, true) + tickVetor;
+ txt.transform.localPosition = pos;
+ AxisHelper.AdjustRadiusAxisLabelPos(txt, pos, cenPos, txtHig, Vector3.zero);
+ axis.axisLabelTextList.Add(txt);
+
+ totalWidth += labelWidth;
+ }
+ if (m_Tooltip.runtimeGameObject)
+ {
+ Vector2 privot = new Vector2(0.5f, 1);
+ var labelParent = m_Tooltip.runtimeGameObject.transform;
+ GameObject labelObj = ChartHelper.AddTooltipLabel(ChartCached.GetAxisTooltipLabel(objName), labelParent, m_ThemeInfo.font, privot);
+ axis.SetTooltipLabel(labelObj);
+ axis.SetTooltipLabelColor(m_ThemeInfo.tooltipBackgroundColor, m_ThemeInfo.tooltipTextColor);
+ axis.SetTooltipLabelActive(axis.show && m_Tooltip.show && m_Tooltip.type == Tooltip.Type.Corss);
+ }
+ }
+
+ private void InitAngleAxis(AngleAxis axis)
+ {
+ PolarHelper.UpdatePolarCenter(m_Polar, m_ChartPosition, m_ChartWidth, m_ChartHeight);
+ var radius = m_Polar.runtimeRadius;
+ axis.axisLabelTextList.Clear();
+
+ string objName = "axis_angle";
+ var axisObj = ChartHelper.AddObject(objName, transform, chartAnchorMin,
+ chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight));
+ axisObj.transform.localPosition = Vector3.zero;
+ axisObj.SetActive(axis.show && axis.axisLabel.show);
+ axisObj.hideFlags = chartHideFlags;
+ ChartHelper.HideAllObject(axisObj);
+ var labelColor = ChartHelper.IsClearColor(axis.axisLabel.color) ?
+ (Color)m_ThemeInfo.axisTextColor :
+ axis.axisLabel.color;
+ int splitNumber = AxisHelper.GetSplitNumber(axis, radius, null);
+ float totalAngle = m_AngleAxis.runtimeStartAngle;
+ var total = 360;
+ var cenPos = m_Polar.runtimeCenterPos;
+ var txtHig = m_AngleAxis.axisLabel.fontSize + 2;
+ var margin = m_AngleAxis.axisLabel.margin;
+ var isCategory = m_AngleAxis.IsCategory();
+ for (int i = 0; i < splitNumber - 1; i++)
+ {
+ float scaleAngle = AxisHelper.GetScaleWidth(axis, total, i, null);
+ bool inside = axis.axisLabel.inside;
+ Text txt = ChartHelper.AddTextObject(objName + i, axisObj.transform,
+ m_ThemeInfo.font, labelColor, TextAnchor.MiddleCenter, new Vector2(0.5f, 0.5f),
+ new Vector2(0.5f, 0.5f), new Vector2(0.5f, 0.5f), new Vector2(scaleAngle, txtHig),
+ axis.axisLabel.fontSize, axis.axisLabel.rotate, axis.axisLabel.fontStyle);
+ if (i == 0) axis.axisLabel.SetRelatedText(txt, scaleAngle);
+ var isPercentStack = SeriesHelper.IsPercentStack(m_Series, SerieType.Bar);
+ txt.text = AxisHelper.GetLabelName(axis, total, i, axis.runtimeMinValue, axis.runtimeMaxValue, null,
+ isPercentStack);
+ txt.gameObject.SetActive(axis.show &&
+ (axis.axisLabel.interval == 0 || i % (axis.axisLabel.interval + 1) == 0));
+ var pos = ChartHelper.GetPos(cenPos, radius + margin, isCategory ? (totalAngle + scaleAngle / 2) : totalAngle, true);
+ AxisHelper.AdjustCircleLabelPos(txt, pos, cenPos, txtHig, Vector3.zero);
+ axis.axisLabelTextList.Add(txt);
+
+ totalAngle += scaleAngle;
+ }
+ if (m_Tooltip.runtimeGameObject)
+ {
+ Vector2 privot = new Vector2(0.5f, 1);
+ var labelParent = m_Tooltip.runtimeGameObject.transform;
+ GameObject labelObj = ChartHelper.AddTooltipLabel(ChartCached.GetAxisTooltipLabel(objName), labelParent, m_ThemeInfo.font, privot);
+ axis.SetTooltipLabel(labelObj);
+ axis.SetTooltipLabelColor(m_ThemeInfo.tooltipBackgroundColor, m_ThemeInfo.tooltipTextColor);
+ axis.SetTooltipLabelActive(axis.show && m_Tooltip.show && m_Tooltip.type == Tooltip.Type.Corss);
+ }
+ }
+
+ protected override void Update()
+ {
+ base.Update();
+ CheckMinMaxValue();
+ }
+
+ private void CheckMinMaxValue()
+ {
+
+ if (m_RadiusAxis.IsCategory() && m_AngleAxis.IsCategory())
+ {
+ m_CheckMinMaxValue = true;
+ return;
+ }
+ UpdateAxisMinMaxValue(0, m_RadiusAxis);
+ UpdateAxisMinMaxValue(0, m_AngleAxis);
+ }
+
+ private void UpdateAxisMinMaxValue(int axisIndex, Axis axis, bool updateChart = true)
+ {
+ if (axis.IsCategory() || !axis.show) return;
+ float tempMinValue = 0;
+ float tempMaxValue = 0;
+ if (axis is RadiusAxis)
+ {
+ SeriesHelper.GetXMinMaxValue(m_Series, null, axisIndex, true, axis.inverse, out tempMinValue, out tempMaxValue);
+ }
+ else
+ {
+ SeriesHelper.GetYMinMaxValue(m_Series, null, axisIndex, true, axis.inverse, out tempMinValue, out tempMaxValue);
+ }
+ AxisHelper.AdjustMinMaxValue(axis, ref tempMinValue, ref tempMaxValue, true);
+ if (tempMinValue != axis.runtimeMinValue || tempMaxValue != axis.runtimeMaxValue)
+ {
+ m_CheckMinMaxValue = true;
+ m_IsPlayingAnimation = true;
+ var needCheck = !m_IsPlayingAnimation && axis.runtimeLastCheckInverse == axis.inverse;
+ axis.UpdateMinValue(tempMinValue, needCheck);
+ axis.UpdateMaxValue(tempMaxValue, needCheck);
+ axis.runtimeZeroXOffset = 0;
+ axis.runtimeZeroYOffset = 0;
+ axis.runtimeLastCheckInverse = axis.inverse;
+ if (updateChart)
+ {
+ UpdateAxisLabelText(axis);
+ RefreshChart();
+ }
+ }
+ if (axis.IsValueChanging(500) && !m_IsPlayingAnimation)
+ {
+ UpdateAxisLabelText(axis);
+ RefreshChart();
+ }
+ }
+
+ protected void UpdateAxisLabelText(Axis axis)
+ {
+ float m_CoordinateWidth = axis is RadiusAxis ? m_Polar.runtimeRadius : 360;
+ var isPercentStack = SeriesHelper.IsPercentStack(m_Series, SerieType.Bar);
+ axis.UpdateLabelText(m_CoordinateWidth, null, isPercentStack, 500);
+ }
+
+ protected override void DrawChart(VertexHelper vh)
+ {
+ base.DrawChart(vh);
+ DrawPolar(vh);
+ DrawAngleAxis(vh);
+ DrawRadiusAxis(vh);
+ DrawSerie(vh);
+ }
+
+ private void UpdateRuntimeValue()
+ {
+ PolarHelper.UpdatePolarCenter(m_Polar, m_ChartPosition, m_ChartWidth, m_ChartHeight);
+ m_AngleAxis.runtimeStartAngle = 90 - m_AngleAxis.startAngle;
+ }
+
+ private void DrawPolar(VertexHelper vh)
+ {
+ UpdateRuntimeValue();
+ if (!ChartHelper.IsClearColor(m_Polar.backgroundColor))
+ {
+ ChartDrawer.DrawCricle(vh, m_Polar.runtimeCenterPos, m_Polar.runtimeRadius, m_Polar.backgroundColor);
+ }
+ }
+
+ private void DrawRadiusAxis(VertexHelper vh)
+ {
+ var startAngle = m_AngleAxis.runtimeStartAngle;
+ var radius = m_Polar.runtimeRadius;
+ var cenPos = m_Polar.runtimeCenterPos;
+ var size = AxisHelper.GetScaleNumber(m_RadiusAxis, radius, null);
+ var totalWidth = 0f;
+ var dire = ChartHelper.GetDire(startAngle, true).normalized;
+ var tickVetor = ChartHelper.GetVertialDire(dire) * m_RadiusAxis.axisTick.length;
+ var tickWidth = AxisHelper.GetTickWidth(m_RadiusAxis);
+ for (int i = 0; i < size; i++)
+ {
+ var scaleWidth = AxisHelper.GetScaleWidth(m_RadiusAxis, radius, i);
+ var pos = ChartHelper.GetPos(cenPos, totalWidth, startAngle, true);
+ if (m_RadiusAxis.show && m_RadiusAxis.splitLine.show)
+ {
+ var outsideRaidus = totalWidth + m_RadiusAxis.splitLine.lineStyle.width * 2;
+ var splitLineColor = m_RadiusAxis.splitLine.GetColor(m_ThemeInfo);
+ ChartDrawer.DrawDoughnut(vh, cenPos, totalWidth, outsideRaidus, splitLineColor, Color.clear);
+ }
+ if (m_RadiusAxis.show && m_RadiusAxis.axisTick.show)
+ {
+ ChartDrawer.DrawLine(vh, pos, pos + tickVetor, tickWidth, m_ThemeInfo.axisLineColor);
+ }
+ totalWidth += scaleWidth;
+ }
+ if (m_RadiusAxis.show && m_RadiusAxis.axisLine.show)
+ {
+ var lineStartPos = m_Polar.runtimeCenterPos - dire * m_RadiusAxis.axisTick.width;
+ var lineEndPos = m_Polar.runtimeCenterPos + dire * (radius + m_RadiusAxis.axisTick.width);
+ ChartDrawer.DrawLine(vh, lineStartPos, lineEndPos, m_RadiusAxis.axisLine.width, m_ThemeInfo.axisLineColor);
+ }
+ }
+
+ private void DrawAngleAxis(VertexHelper vh)
+ {
+ var radius = m_Polar.runtimeRadius;
+ var cenPos = m_Polar.runtimeCenterPos;
+ var total = 360;
+ var size = AxisHelper.GetScaleNumber(m_AngleAxis, total, null);
+ var currAngle = m_AngleAxis.runtimeStartAngle;
+ var tickWidth = AxisHelper.GetTickWidth(m_AngleAxis);
+ for (int i = 0; i < size; i++)
+ {
+ var scaleWidth = AxisHelper.GetScaleWidth(m_AngleAxis, total, i);
+ var pos = ChartHelper.GetPos(cenPos, radius, currAngle, true);
+ if (m_AngleAxis.show && m_AngleAxis.splitLine.show)
+ {
+ var splitLineColor = m_AngleAxis.splitLine.GetColor(m_ThemeInfo);
+ ChartDrawer.DrawLine(vh, cenPos, pos, m_AngleAxis.splitLine.lineStyle.width, splitLineColor);
+ }
+ if (m_AngleAxis.show && m_AngleAxis.axisTick.show)
+ {
+ var tickPos = ChartHelper.GetPos(cenPos, radius + m_AngleAxis.axisTick.length, currAngle, true);
+ ChartDrawer.DrawLine(vh, pos, tickPos, tickWidth, m_ThemeInfo.axisLineColor);
+ }
+ currAngle += scaleWidth;
+ }
+ if (m_AngleAxis.show && m_AngleAxis.axisLine.show)
+ {
+ var outsideRaidus = radius + m_AngleAxis.axisLine.width * 2;
+ ChartDrawer.DrawDoughnut(vh, cenPos, radius, outsideRaidus, m_ThemeInfo.axisLineColor, Color.clear);
+ }
+ }
+
+ private void DrawSerie(VertexHelper vh)
+ {
+ for (int i = 0; i < m_Series.Count; i++)
+ {
+ var serie = m_Series.GetSerie(i);
+ serie.index = i;
+ if (!serie.show) continue;
+ switch (serie.type)
+ {
+ case SerieType.Line:
+ DrawPolarLine(vh, serie);
+ break;
+ case SerieType.Bar:
+ break;
+ case SerieType.Scatter:
+ case SerieType.EffectScatter:
+ break;
+ }
+
+ }
+ DrawPolarLineSymbol(vh);
+
+ }
+
+ private void DrawPolarLine(VertexHelper vh, Serie serie)
+ {
+ var startAngle = m_AngleAxis.runtimeStartAngle;
+ var radius = m_Polar.runtimeRadius;
+ var datas = serie.data;
+ if (datas.Count <= 0) return;
+ float dataChangeDuration = serie.animation.GetUpdateAnimationDuration();
+ float min = m_RadiusAxis.GetCurrMinValue(dataChangeDuration);
+ float max = m_RadiusAxis.GetCurrMaxValue(dataChangeDuration);
+
+ var firstSerieData = datas[0];
+ var startPos = GetPolarPos(firstSerieData, min, max, radius);
+ var nextPos = Vector3.zero;
+ var lineColor = SerieHelper.GetLineColor(serie, m_ThemeInfo, serie.index, serie.highlighted);
+ var lineWidth = serie.lineStyle.width;
+ float currDetailProgress = 0;
+ float totalDetailProgress = datas.Count;
+ serie.animation.InitProgress(serie.dataPoints.Count, currDetailProgress, totalDetailProgress);
+ serie.animation.SetDataFinish(0);
+ for (int i = 1; i < datas.Count; i++)
+ {
+ if (serie.animation.CheckDetailBreak(i)) break;
+ var serieData = datas[i];
+ nextPos = GetPolarPos(datas[i], min, max, radius);
+ ChartDrawer.DrawLine(vh, startPos, nextPos, lineWidth, lineColor);
+ startPos = nextPos;
+ }
+ if (!serie.animation.IsFinish())
+ {
+ serie.animation.CheckProgress(totalDetailProgress);
+ serie.animation.CheckSymbol(serie.symbol.size);
+ m_IsPlayingAnimation = true;
+ RefreshChart();
+ }
+ }
+
+ private void DrawPolarBar(VertexHelper vh, Serie serie)
+ {
+
+ }
+
+ private void DrawPolarLineSymbol(VertexHelper vh)
+ {
+ for (int n = 0; n < m_Series.Count; n++)
+ {
+ var serie = m_Series.GetSerie(n);
+ if (!serie.show) continue;
+ if (serie.type != SerieType.Line) continue;
+ var count = serie.dataCount;
+ for (int i = 0; i < count; i++)
+ {
+ var serieData = serie.GetSerieData(i);
+ var symbol = SerieHelper.GetSerieSymbol(serie, serieData);
+ if (ChartHelper.IsIngore(serieData.runtimePosition)) continue;
+ bool highlight = serieData.highlighted || serie.highlighted;
+ if ((!symbol.show || !symbol.ShowSymbol(i, count) || serie.IsPerformanceMode()) && !serieData.highlighted) continue;
+ float symbolSize = highlight ? symbol.selectedSize : symbol.size;
+ var symbolColor = SerieHelper.GetItemColor(serie, serieData, m_ThemeInfo, n, highlight);
+ var symbolToColor = SerieHelper.GetItemToColor(serie, serieData, m_ThemeInfo, n, highlight);
+ var symbolBorder = SerieHelper.GetSymbolBorder(serie, serieData, highlight);
+ var cornerRadius = SerieHelper.GetSymbolCornerRadius(serie, serieData, highlight);
+ symbolSize = serie.animation.GetSysmbolSize(symbolSize);
+ DrawSymbol(vh, symbol.type, symbolSize, symbolBorder, serieData.runtimePosition, symbolColor,
+ symbolToColor, symbol.gap, cornerRadius);
+ }
+ }
+ }
+
+ protected override void DrawTooltip(VertexHelper vh)
+ {
+ if (m_Tooltip.runtimeAngle < 0) return;
+ var lineColor = TooltipHelper.GetLineColor(tooltip, m_ThemeInfo);
+ var cenPos = m_Polar.runtimeCenterPos;
+ var sp = m_Polar.runtimeCenterPos;
+ var tooltipAngle = m_Tooltip.runtimeAngle + m_AngleAxis.runtimeStartAngle;
+ var ep = ChartHelper.GetPos(sp, m_Polar.runtimeRadius, tooltipAngle, true);
+ ChartDrawer.DrawLineStyle(vh, m_Tooltip.lineStyle, sp, ep, lineColor);
+ if (m_Tooltip.type == Tooltip.Type.Corss)
+ {
+ var dist = Vector2.Distance(pointerPos, cenPos);
+ if (dist > m_Polar.runtimeRadius) dist = m_Polar.runtimeRadius;
+ var outsideRaidus = dist + m_Tooltip.lineStyle.width * 2;
+ ChartDrawer.DrawDoughnut(vh, cenPos, dist, outsideRaidus, lineColor, Color.clear);
+ }
+ }
+
+ private Vector3 GetPolarPos(SerieData serieData, float min, float max, float polarRadius)
+ {
+ var angle = m_AngleAxis.runtimeStartAngle + serieData.GetData(1);
+ var value = serieData.GetData(0);
+ var radius = (value - min) / (max - min) * polarRadius;
+ serieData.runtimeAngle = (angle + 360) % 360;
+ serieData.runtimePosition = ChartHelper.GetPos(m_Polar.runtimeCenterPos, radius, angle, true);
+ return serieData.runtimePosition;
+ }
+
+ protected override void CheckTootipArea(Vector2 local)
+ {
+ var dist = Vector2.Distance(local, m_Polar.runtimeCenterPos);
+ if (dist > m_Polar.runtimeRadius)
+ {
+ m_Tooltip.runtimeAngle = -1;
+ if (m_Tooltip.IsActive())
+ {
+ foreach (var kv in m_Tooltip.runtimeSerieIndex)
+ {
+ var serie = m_Series.GetSerie(kv.Key);
+ foreach (var dataIndex in kv.Value)
+ {
+ serie.GetSerieData(dataIndex).highlighted = false;
+ }
+ }
+ m_Tooltip.ClearSerieDataIndex();
+ m_Tooltip.SetActive(false);
+ RefreshChart();
+ }
+ return;
+ }
+ m_Tooltip.ClearSerieDataIndex();
+ Vector2 dir = local - new Vector2(m_Polar.runtimeCenterPos.x, m_Polar.runtimeCenterPos.y);
+ float angle = ChartHelper.GetAngle360(Vector2.up, dir);
+
+ foreach (var serie in m_Series.list)
+ {
+ switch (serie.type)
+ {
+ case SerieType.Line:
+ bool refresh = false;
+ var count = serie.data.Count;
+ SerieHelper.GetDimensionMinMaxData(serie, 1, -1);
+ var diff = (serie.runtimeDataMax - serie.runtimeDataMin) / (count - 1);
+ for (int j = 0; j < count; j++)
+ {
+ var serieData = serie.data[j];
+ var flag = Mathf.Abs(serieData.runtimeAngle - angle) < Mathf.Abs(diff / 2);
+ if (serieData.highlighted != flag)
+ {
+ refresh = true;
+ }
+ serieData.highlighted = flag;
+ if (flag)
+ {
+ m_Tooltip.runtimeAngle = (serieData.runtimeAngle - m_AngleAxis.runtimeStartAngle + 360) % 360;
+ m_Tooltip.AddSerieDataIndex(serie.index, j);
+ }
+ }
+ if (refresh) RefreshChart();
+ break;
+ case SerieType.Bar:
+ break;
+ case SerieType.Scatter:
+ case SerieType.EffectScatter:
+ break;
+ }
+ }
+ m_Tooltip.UpdateContentPos(new Vector2(local.x + 18, local.y - 25));
+ UpdateTooltip();
+ if (m_Tooltip.type == Tooltip.Type.Corss)
+ {
+ RefreshChart();
+ }
+ }
+
+ private float GetAngleDiff(SerieData nextData, SerieData serieData, float angle)
+ {
+ var nextAngle = nextData.runtimeAngle;
+ var lastAngle = serieData.runtimeAngle;
+ var diff = 0f;
+ if (nextAngle > 270 && lastAngle < 90)
+ {
+ diff = 360 - nextAngle + lastAngle;
+ }
+ else
+ {
+ diff = nextAngle - lastAngle;
+ }
+ return Mathf.Abs(diff);
+ }
+
+ protected override void UpdateTooltip()
+ {
+ base.UpdateTooltip();
+ var showTooltip = m_Tooltip.isAnySerieDataIndex();
+ if (showTooltip)
+ {
+ var content = TooltipHelper.GetPolarFormatterContent(m_Tooltip, m_Series, m_ThemeInfo);
+ TooltipHelper.SetContentAndPosition(tooltip, content, chartRect);
+ }
+ m_Tooltip.SetActive(showTooltip);
+ }
+ }
+}
diff --git a/Assets/XCharts/Runtime/PolarChart.cs.meta b/Assets/XCharts/Runtime/PolarChart.cs.meta
new file mode 100644
index 00000000..c6712164
--- /dev/null
+++ b/Assets/XCharts/Runtime/PolarChart.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 52fd81110b7774a4096479f4cd777579
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Runtime/RadarChart.cs b/Assets/XCharts/Runtime/RadarChart.cs
index b8a53141..7c19f51e 100644
--- a/Assets/XCharts/Runtime/RadarChart.cs
+++ b/Assets/XCharts/Runtime/RadarChart.cs
@@ -133,24 +133,8 @@ namespace XCharts
txt.gameObject.hideFlags = chartHideFlags;
txt.text = radar.indicatorList[i].name;
txt.gameObject.SetActive(radar.indicator);
- var txtWidth = txt.preferredWidth;
- var sizeDelta = new Vector2(txt.preferredWidth, txt.preferredHeight);
- txt.GetComponent().sizeDelta = sizeDelta;
- var diff = pos.x - radar.runtimeCenterPos.x;
- if (diff < -1f) //left
- {
- pos = new Vector3(pos.x - txtWidth / 2, pos.y);
- }
- else if (diff > 1f) //right
- {
- pos = new Vector3(pos.x + txtWidth / 2, pos.y);
- }
- else
- {
- float y = pos.y > radar.runtimeCenterPos.y ? pos.y + txtHig / 2 : pos.y - txtHig / 2;
- pos = new Vector3(pos.x, y);
- }
- txt.transform.localPosition = pos + new Vector3(textStyle.offset.x, textStyle.offset.y);
+ var offset = new Vector3(textStyle.offset.x, textStyle.offset.y);
+ AxisHelper.AdjustCircleLabelPos(txt, pos, radar.runtimeCenterPos, txtHig, offset);
}
}
}
diff --git a/Assets/XCharts/Runtime/Utility/ChartDrawer.cs b/Assets/XCharts/Runtime/Utility/ChartDrawer.cs
index d81dc610..c30d5f03 100644
--- a/Assets/XCharts/Runtime/Utility/ChartDrawer.cs
+++ b/Assets/XCharts/Runtime/Utility/ChartDrawer.cs
@@ -824,7 +824,7 @@ namespace XCharts
float borderAngle = 0;
float spaceAngle = 0;
- var p2 = p + radius * GetDire(startAngle);
+ var p2 = p + radius * ChartHelper.GetDire(startAngle);
var p3 = Vector3.zero;
var p4 = Vector3.zero;
var spaceCenter = p;
@@ -834,7 +834,7 @@ namespace XCharts
var needBorder = borderWidth != 0;
var needSpace = space != 0;
var lastPos = Vector3.zero;
- var middleDire = GetDire(startAngle + halfAngle);
+ var middleDire = ChartHelper.GetDire(startAngle + halfAngle);
if (needBorder || needSpace)
{
float spaceDiff = 0f;
@@ -848,7 +848,7 @@ namespace XCharts
realStartAngle = startAngle + spaceAngle;
realToAngle = toAngle - spaceAngle;
if (realToAngle < realStartAngle) realToAngle = realStartAngle;
- p2 = GetPos(p, radius, realStartAngle);
+ p2 = ChartHelper.GetPos(p, radius, realStartAngle);
}
if (needBorder)
{
@@ -860,16 +860,16 @@ namespace XCharts
if (realToAngle < realStartAngle)
{
realToAngle = realStartAngle;
- p2 = GetPos(p, radius, realStartAngle);
+ p2 = ChartHelper.GetPos(p, radius, realStartAngle);
}
else
{
- var borderX1 = GetPos(p, radius, realStartAngle);
+ var borderX1 = ChartHelper.GetPos(p, radius, realStartAngle);
DrawPolygon(vh, realCenter, spaceCenter, p2, borderX1, borderColor);
p2 = borderX1;
- var borderX2 = GetPos(p, radius, realToAngle);
- var pEnd = GetPos(p, radius, toAngle - spaceAngle);
+ var borderX2 = ChartHelper.GetPos(p, radius, realToAngle);
+ var pEnd = ChartHelper.GetPos(p, radius, toAngle - spaceAngle);
DrawPolygon(vh, realCenter, borderX2, pEnd, spaceCenter, borderColor);
}
}
@@ -879,7 +879,7 @@ namespace XCharts
for (int i = 0; i <= segments; i++)
{
float currAngle = realStartAngle + i * segmentAngle;
- p3 = p + radius * GetDire(currAngle);
+ p3 = p + radius * ChartHelper.GetDire(currAngle);
if (gradientType == 1)
{
if (isYAxis)
@@ -918,7 +918,7 @@ namespace XCharts
{
if (realToAngle > realStartAngle)
{
- var borderX2 = p + radius * GetDire(realToAngle);
+ var borderX2 = p + radius * ChartHelper.GetDire(realToAngle);
DrawTriangle(vh, realCenter, p2, borderX2, toColor, color, color);
if (needBorder)
{
@@ -931,17 +931,7 @@ namespace XCharts
}
}
- private static Vector3 GetPos(Vector3 center, float radius, float angle, bool isDegree = false)
- {
- angle = isDegree ? angle * Mathf.Deg2Rad : angle;
- return new Vector3(center.x + radius * Mathf.Sin(angle), center.y + radius * Mathf.Cos(angle));
- }
-
- private static Vector3 GetDire(float angle, bool isDegree = false)
- {
- angle = isDegree ? angle * Mathf.Deg2Rad : angle;
- return new Vector3(Mathf.Sin(angle), Mathf.Cos(angle));
- }
+
public static void DrawRoundCap(VertexHelper vh, Vector3 center, float width, float radius, float angle,
bool clockwise, Color color, bool end)
@@ -1059,8 +1049,8 @@ namespace XCharts
spaceHalfAngle = 2 * Mathf.Asin(space / (2 * (insideRadius + (outsideRadius - insideRadius) / 2)));
if (clockwise)
{
- p1 = GetPos(p, insideRadius, startAngle + spaceInAngle, false);
- e1 = GetPos(p, insideRadius, toAngle - spaceInAngle, false);
+ p1 = ChartHelper.GetPos(p, insideRadius, startAngle + spaceInAngle, false);
+ e1 = ChartHelper.GetPos(p, insideRadius, toAngle - spaceInAngle, false);
realStartOutAngle = startAngle + spaceAngle;
realToOutAngle = toAngle - spaceAngle;
realStartInAngle = startAngle + spaceInAngle;
@@ -1068,15 +1058,15 @@ namespace XCharts
}
else
{
- p1 = GetPos(p, insideRadius, startAngle - spaceInAngle, false);
- e1 = GetPos(p, insideRadius, toAngle + spaceInAngle, false);
+ p1 = ChartHelper.GetPos(p, insideRadius, startAngle - spaceInAngle, false);
+ e1 = ChartHelper.GetPos(p, insideRadius, toAngle + spaceInAngle, false);
realStartOutAngle = startAngle - spaceAngle;
realToOutAngle = toAngle + spaceAngle;
realStartInAngle = startAngle - spaceInAngle;
realToOutAngle = toAngle + spaceInAngle;
}
- p2 = GetPos(p, outsideRadius, realStartOutAngle, false);
- e2 = GetPos(p, outsideRadius, realToOutAngle, false);
+ p2 = ChartHelper.GetPos(p, outsideRadius, realStartOutAngle, false);
+ e2 = ChartHelper.GetPos(p, outsideRadius, realToOutAngle, false);
}
if (needBorder)
{
@@ -1091,15 +1081,15 @@ namespace XCharts
realToOutAngle = realToOutAngle - borderAngle;
realStartInAngle = startAngle + spaceInAngle + borderInAngle;
realToInAngle = toAngle - spaceInAngle - borderInAngle;
- var newp1 = GetPos(p, insideRadius, startAngle + spaceInAngle + borderInAngle, false);
- var newp2 = GetPos(p, outsideRadius, realStartOutAngle, false);
+ var newp1 = ChartHelper.GetPos(p, insideRadius, startAngle + spaceInAngle + borderInAngle, false);
+ var newp2 = ChartHelper.GetPos(p, outsideRadius, realStartOutAngle, false);
if (!roundCap) DrawPolygon(vh, newp2, newp1, p1, p2, borderColor);
p1 = newp1;
p2 = newp2;
if (toAngle - spaceInAngle - 2 * borderInAngle > realStartOutAngle)
{
- var newe1 = GetPos(p, insideRadius, toAngle - spaceInAngle - borderInAngle, false);
- var newe2 = GetPos(p, outsideRadius, realToOutAngle, false);
+ var newe1 = ChartHelper.GetPos(p, insideRadius, toAngle - spaceInAngle - borderInAngle, false);
+ var newe2 = ChartHelper.GetPos(p, outsideRadius, realToOutAngle, false);
if (!roundCap) DrawPolygon(vh, newe2, e2, e1, newe1, borderColor);
e1 = newe1;
e2 = newe2;
@@ -1111,15 +1101,15 @@ namespace XCharts
realToOutAngle = realToOutAngle + borderAngle;
realStartInAngle = startAngle - spaceInAngle - borderInAngle;
realToInAngle = toAngle + spaceInAngle + borderInAngle;
- var newp1 = GetPos(p, insideRadius, startAngle - spaceInAngle - borderInAngle, false);
- var newp2 = GetPos(p, outsideRadius, realStartOutAngle, false);
+ var newp1 = ChartHelper.GetPos(p, insideRadius, startAngle - spaceInAngle - borderInAngle, false);
+ var newp2 = ChartHelper.GetPos(p, outsideRadius, realStartOutAngle, false);
if (!roundCap) DrawPolygon(vh, newp2, newp1, p1, p2, borderColor);
p1 = newp1;
p2 = newp2;
if (toAngle + spaceInAngle + 2 * borderInAngle < realStartOutAngle)
{
- var newe1 = GetPos(p, insideRadius, toAngle + spaceInAngle + borderInAngle, false);
- var newe2 = GetPos(p, outsideRadius, realToOutAngle, false);
+ var newe1 = ChartHelper.GetPos(p, insideRadius, toAngle + spaceInAngle + borderInAngle, false);
+ var newe2 = ChartHelper.GetPos(p, outsideRadius, realToOutAngle, false);
if (!roundCap) DrawPolygon(vh, newe2, e2, e1, newe1, borderColor);
e1 = newe1;
e2 = newe2;
@@ -1143,7 +1133,7 @@ namespace XCharts
realStartInAngle = startAngle - 2 * spaceHalfAngle - borderHalfAngle - roundAngle;
}
var roundTotalDegree = realStartOutAngle * Mathf.Rad2Deg;
- var roundCenter = p + roundAngleRadius * GetDire(realStartOutAngle);
+ var roundCenter = p + roundAngleRadius * ChartHelper.GetDire(realStartOutAngle);
var sectorStartDegree = clockwise ? roundTotalDegree + 180 : roundTotalDegree;
var sectorToDegree = clockwise ? roundTotalDegree + 360 : roundTotalDegree + 180;
DrawSector(vh, roundCenter, roundRadius, color, sectorStartDegree, sectorToDegree, smoothness / 2);
@@ -1152,8 +1142,8 @@ namespace XCharts
DrawDoughnut(vh, roundCenter, roundRadius, roundRadius + borderWidth, borderColor, Color.clear,
sectorStartDegree, sectorToDegree, smoothness / 2);
}
- p1 = GetPos(p, insideRadius, realStartOutAngle);
- p2 = GetPos(p, outsideRadius, realStartOutAngle);
+ p1 = ChartHelper.GetPos(p, insideRadius, realStartOutAngle);
+ p2 = ChartHelper.GetPos(p, outsideRadius, realStartOutAngle);
if (clockwise)
{
@@ -1168,7 +1158,7 @@ namespace XCharts
if (realToOutAngle > realStartOutAngle) realToOutAngle = realStartOutAngle;
}
roundTotalDegree = realToOutAngle * Mathf.Rad2Deg;
- roundCenter = p + roundAngleRadius * GetDire(realToOutAngle);
+ roundCenter = p + roundAngleRadius * ChartHelper.GetDire(realToOutAngle);
sectorStartDegree = clockwise ? roundTotalDegree : roundTotalDegree + 180;
sectorToDegree = clockwise ? roundTotalDegree + 180 : roundTotalDegree + 360;
DrawSector(vh, roundCenter, roundRadius, color, sectorStartDegree, sectorToDegree, smoothness / 2);
@@ -1177,8 +1167,8 @@ namespace XCharts
DrawDoughnut(vh, roundCenter, roundRadius, roundRadius + borderWidth, borderColor, Color.clear,
sectorStartDegree, sectorToDegree, smoothness / 2);
}
- e1 = GetPos(p, insideRadius, realToOutAngle);
- e2 = GetPos(p, outsideRadius, realToOutAngle);
+ e1 = ChartHelper.GetPos(p, insideRadius, realToOutAngle);
+ e2 = ChartHelper.GetPos(p, outsideRadius, realToOutAngle);
}
float segmentAngle = (realToInAngle - realStartInAngle) / segments;
for (int i = 0; i <= segments; i++)
diff --git a/Assets/XCharts/Runtime/Utility/ChartHelper.cs b/Assets/XCharts/Runtime/Utility/ChartHelper.cs
index 601ef77b..1f7cc387 100644
--- a/Assets/XCharts/Runtime/Utility/ChartHelper.cs
+++ b/Assets/XCharts/Runtime/Utility/ChartHelper.cs
@@ -759,5 +759,33 @@ namespace XCharts
angle = (angle + 360) % 360;
return angle;
}
+
+ public static Vector3 GetPos(Vector3 center, float radius, float angle, bool isDegree = false)
+ {
+ angle = isDegree ? angle * Mathf.Deg2Rad : angle;
+ return new Vector3(center.x + radius * Mathf.Sin(angle), center.y + radius * Mathf.Cos(angle));
+ }
+
+ public static Vector3 GetDire(float angle, bool isDegree = false)
+ {
+ angle = isDegree ? angle * Mathf.Deg2Rad : angle;
+ return new Vector3(Mathf.Sin(angle), Mathf.Cos(angle));
+ }
+
+ public static Vector3 GetVertialDire(Vector3 dire)
+ {
+ if (dire.x == 0)
+ {
+ return new Vector3(-1, 0, 0);
+ }
+ if (dire.y == 0)
+ {
+ return new Vector3(0, -1, 0);
+ }
+ else
+ {
+ return new Vector3(-dire.y / dire.x, 1, 0).normalized;
+ }
+ }
}
}
\ No newline at end of file
diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity
index 3dc2e36b..add8f5b6 100644
--- a/Assets/XChartsDemo/demo_xchart.unity
+++ b/Assets/XChartsDemo/demo_xchart.unity
@@ -6307,6 +6307,1908 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 18601018}
+--- !u!1 &19051740
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 19051743}
+ - component: {fileID: 19051742}
+ - component: {fileID: 19051741}
+ m_Layer: 0
+ m_Name: PolarChart (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &19051741
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 19051740}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 52fd81110b7774a4096479f4cd777579, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_DebugMode: 0
+ m_ChartName:
+ m_ThemeInfo:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Theme: 0
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_BackgroundColor:
+ serializedVersion: 2
+ rgba: 4294967295
+ m_TitleTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_TitleSubTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_LegendTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_LegendUnableColor:
+ serializedVersion: 2
+ rgba: 4291611852
+ m_AxisTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_AxisLineColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_AxisSplitLineColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_TooltipBackgroundColor:
+ serializedVersion: 2
+ rgba: 3360772433
+ m_TooltipFlagAreaColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_TooltipTextColor:
+ serializedVersion: 2
+ rgba: 4294967295
+ m_TooltipLabelColor:
+ serializedVersion: 2
+ rgba: 4280887593
+ m_TooltipLineColor:
+ serializedVersion: 2
+ rgba: 1680419113
+ m_DataZoomTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_DataZoomLineColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_DataZoomSelectedColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_VisualMapBackgroundColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_VisualMapBorderColor:
+ serializedVersion: 2
+ rgba: 4291611852
+ m_ColorPalette:
+ - serializedVersion: 2
+ rgba: 4281415106
+ - serializedVersion: 2
+ rgba: 4283712815
+ - serializedVersion: 2
+ rgba: 4289241185
+ - serializedVersion: 2
+ rgba: 4284842708
+ - serializedVersion: 2
+ rgba: 4289644433
+ - serializedVersion: 2
+ rgba: 4286816116
+ - serializedVersion: 2
+ rgba: 4280452810
+ - serializedVersion: 2
+ rgba: 4288324285
+ - serializedVersion: 2
+ rgba: 4285821038
+ - serializedVersion: 2
+ rgba: 4285556052
+ - serializedVersion: 2
+ rgba: 4292070596
+ m_CustomFont: {fileID: 0}
+ m_CustomBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTitleTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTitleSubTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomLegendTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomLegendUnableColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomAxisTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomAxisLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomAxisSplitLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipFlagAreaColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipLabelColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomDataZoomTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomDataZoomLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomDataZoomSelectedColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomVisualMapBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomVisualMapBorderColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomColorPalette:
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ m_Title:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Text: PolarChart
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_SubText:
+ m_SubTextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 14
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_ItemGap: 8
+ m_Location:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Align: 2
+ m_Left: 0
+ m_Right: 0
+ m_Top: 5
+ m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
+ m_Legend:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_SelectedMode: 0
+ m_Orient: 0
+ m_Location:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Align: 2
+ m_Left: 0
+ m_Right: 0
+ m_Top: 30
+ m_Bottom: 0
+ m_ItemWidth: 24
+ m_ItemHeight: 12
+ m_ItemGap: 10
+ m_ItemAutoColor: 1
+ m_Formatter:
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 2, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_Data: []
+ m_Icons: []
+ m_Tooltip:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 1
+ m_Formatter:
+ m_ItemFormatter:
+ m_TitleFormatter:
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_MinWidth: 0
+ m_MinHeight: 0
+ m_NumericFormatter:
+ m_PaddingLeftRight: 5
+ m_PaddingTopBottom: 5
+ m_IgnoreDataDefaultContent: '-'
+ m_AlwayShow: 0
+ m_BackgroundImage: {fileID: 0}
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.7
+ m_Opacity: 1
+ m_Series:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Series:
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Name: line1
+ m_Stack:
+ m_AxisIndex: 0
+ m_RadarIndex: 0
+ m_MinShow: 0
+ m_MaxShow: 0
+ m_MaxCache: 0
+ m_AreaStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Origin: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipHighlight: 0
+ m_HighlightColor: {r: 0, g: 0, b: 0, a: 0}
+ m_HighlightToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 2.5
+ m_SelectedSize: 5
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_SampleDist: 0
+ m_SampleType: 1
+ m_SampleAverage: 0
+ m_LineType: 0
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.8
+ m_Opacity: 1
+ m_BarType: 0
+ m_BarPercentStack: 0
+ m_BarWidth: 0.6
+ m_BarGap: 0.3
+ m_BarCategoryGap: 0.2
+ m_BarZebraWidth: 4
+ m_BarZebraGap: 2
+ m_Min: 0
+ m_Max: 0
+ m_StartAngle: 0
+ m_EndAngle: 0
+ m_Clockwise: 1
+ m_RoundCap: 0
+ m_RingGap: 10
+ m_SplitNumber: 0
+ m_GaugeType: 0
+ m_GaugeAxis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_AxisLine:
+ m_Show: 1
+ m_Width: 15
+ m_Opacity: 1
+ m_BarColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BarBackgroundColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
+ m_StageColor:
+ - m_Percent: 0.2
+ m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1}
+ - m_Percent: 0.8
+ m_Color: {r: 0.3882353, g: 0.5254902, b: 0.61960787, a: 1}
+ - m_Percent: 1
+ m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1}
+ m_SplitLine:
+ m_Show: 1
+ m_Length: 15
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1}
+ m_Width: 1.5
+ m_Opacity: 1
+ m_AxisTick:
+ m_Show: 1
+ m_Length: 5
+ m_SplitNumber: 5
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1}
+ m_Width: 1
+ m_Opacity: 1
+ m_AxisLabel:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_AxisLabelText: []
+ runtimeStageAngle: []
+ runtimeLabelPosition: []
+ m_GaugePointer:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Length: 0.8
+ m_Width: 15
+ m_ClickOffset: 1
+ m_RoseType: 0
+ m_Space: 0
+ m_Center:
+ - 0.5
+ - 0.5
+ m_Radius:
+ - 0
+ - 80
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_Animation:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Enable: 1
+ m_Easting: 0
+ m_Threshold: 2000
+ m_FadeInDuration: 1000
+ m_FadeInDelay: 0
+ m_FadeOutDuration: 1000
+ m_FadeOutDelay: 0
+ m_DataChangeEnable: 1
+ m_DataChangeDuration: 500
+ m_ActualDuration: 0
+ m_CurrDetailProgress: 0
+ m_DestDetailProgress: 8
+ m_LineArrow:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Width: 10
+ m_Height: 15
+ m_Offset: 0
+ m_Dent: 3
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_TitleStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_ShowDataDimension: 2
+ m_ShowDataName: 0
+ m_ShowDataIcon: 0
+ m_Clip: 0
+ m_Ignore: 0
+ m_IgnoreValue: 0
+ m_ShowAsPositiveNumber: 0
+ m_Large: 1
+ m_LargeThreshold: 200
+ m_AvoidLabelOverlap: 0
+ m_RadarType: 0
+ m_Data:
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0
+ - 0
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 1.5
+ - 30
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 2
+ - 60
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 2.5
+ - 90
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 3
+ - 120
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 3.5
+ - 150
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 4
+ - 180
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0
+ m_Height: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 0
+ m_PaddingTopBottom: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Line: 0
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 0
+ m_LineLength1: 0
+ m_LineLength2: 0
+ m_Border: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 0
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius: []
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 0
+ m_SelectedSize: 0
+ m_DataIndex: 0
+ m_DataScale: 0
+ m_SelectedDataScale: 0
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 4.5
+ - 210
+ m_Settings:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_LineSmoothStyle: 3
+ m_LineSmoothness: 2
+ m_LineSegmentDistance: 3
+ m_CicleSmoothness: 2
+ m_VisualMapTriangeLen: 20
+ m_PieTooltipExtraRadius: 8
+ m_PieSelectedOffset: 8
+ m_Polar:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Center:
+ - 0.5
+ - 0.45
+ m_Radius: 0.35
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_RadiusAxis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_MinMaxType: 0
+ m_Min: 0
+ m_Max: 0
+ m_SplitNumber: 5
+ m_Interval: 0
+ m_BoundaryGap: 0
+ m_MaxCache: 0
+ m_LogBase: 10
+ m_LogBaseE: 0
+ m_CeilRate: 0
+ m_Inverse: 0
+ m_Data: []
+ m_AxisLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_OnZero: 1
+ m_Width: 0.7
+ m_Symbol: 0
+ m_SymbolWidth: 10
+ m_SymbolHeight: 15
+ m_SymbolOffset: -5
+ m_SymbolDent: 3
+ m_AxisName:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Name: axisName
+ m_Location: 2
+ m_Offset: {x: 0, y: 0}
+ m_Rotate: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_AxisTick:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_AlignWithLabel: 0
+ m_Inside: 0
+ m_Length: 5
+ m_Width: 0
+ m_AxisLabel:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Formatter:
+ m_Interval: 0
+ m_Inside: 0
+ m_Rotate: 0
+ m_Margin: 8
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_NumericFormatter:
+ m_ShowAsPositiveNumber: 0
+ m_OnZero: 0
+ m_TextLimit:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Enable: 0
+ m_MaxWidth: 0
+ m_Gap: 1
+ m_Suffix: '...'
+ m_SplitLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Interval: 0
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.7
+ m_Opacity: 1
+ m_SplitArea:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color:
+ - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608}
+ - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608}
+ m_AngleAxis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_MinMaxType: 2
+ m_Min: 0
+ m_Max: 360
+ m_SplitNumber: 13
+ m_Interval: 0
+ m_BoundaryGap: 0
+ m_MaxCache: 0
+ m_LogBase: 10
+ m_LogBaseE: 0
+ m_CeilRate: 0
+ m_Inverse: 0
+ m_Data: []
+ m_AxisLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_OnZero: 1
+ m_Width: 0.7
+ m_Symbol: 0
+ m_SymbolWidth: 10
+ m_SymbolHeight: 15
+ m_SymbolOffset: -5
+ m_SymbolDent: 3
+ m_AxisName:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Name: axisName
+ m_Location: 2
+ m_Offset: {x: 0, y: 0}
+ m_Rotate: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_AxisTick:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_AlignWithLabel: 0
+ m_Inside: 0
+ m_Length: 5
+ m_Width: 0
+ m_AxisLabel:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Formatter:
+ m_Interval: 0
+ m_Inside: 0
+ m_Rotate: 0
+ m_Margin: 8
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_NumericFormatter:
+ m_ShowAsPositiveNumber: 0
+ m_OnZero: 0
+ m_TextLimit:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Enable: 0
+ m_MaxWidth: 0
+ m_Gap: 1
+ m_Suffix: '...'
+ m_SplitLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Interval: 0
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.7
+ m_Opacity: 1
+ m_SplitArea:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color:
+ - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608}
+ - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608}
+ m_StartAngle: 0
+ m_Clockwise: 1
+--- !u!222 &19051742
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 19051740}
+--- !u!224 &19051743
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 19051740}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 525901933}
+ - {fileID: 350651566}
+ - {fileID: 23024010}
+ - {fileID: 66795421}
+ - {fileID: 736610679}
+ - {fileID: 290308877}
+ - {fileID: 1674437601}
+ m_Father: {fileID: 1598106459}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 588.97, y: -2}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &19305631
GameObject:
m_ObjectHideFlags: 0
@@ -7924,6 +9826,39 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 23017196}
+--- !u!1 &23024009
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 23024010}
+ m_Layer: 0
+ m_Name: label
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &23024010
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 23024009}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &23052176
GameObject:
m_ObjectHideFlags: 0
@@ -7982,7 +9917,7 @@ RectTransform:
m_GameObject: {fileID: 23308856}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1884917327}
- {fileID: 1554550374}
@@ -8283,6 +10218,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 23498924}
+--- !u!1 &24052255
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 24052256}
+ - component: {fileID: 24052258}
+ - component: {fileID: 24052257}
+ m_Layer: 0
+ m_Name: axis_angle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &24052256
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 24052255}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 84, y: 108.17176}
+ m_SizeDelta: {x: 20, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &24052257
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 24052255}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 30
+--- !u!222 &24052258
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 24052255}
--- !u!1 &24148875
GameObject:
m_ObjectHideFlags: 0
@@ -19830,7 +21839,7 @@ RectTransform:
m_GameObject: {fileID: 45369253}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 813949679}
- {fileID: 968398318}
@@ -23970,6 +25979,75 @@ RectTransform:
m_AnchoredPosition: {x: -586.56, y: -169}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &55778847
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 55778848}
+ - component: {fileID: 55778850}
+ - component: {fileID: 55778849}
+ m_Layer: 0
+ m_Name: axis_radius_label
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &55778848
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 55778847}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 1661595148}
+ m_Father: {fileID: 1028307699}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 400}
+ m_SizeDelta: {x: 100, y: 50}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &55778849
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 55778847}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &55778850
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 55778847}
--- !u!1 &56805549
GameObject:
m_ObjectHideFlags: 0
@@ -27451,6 +29529,40 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 66574605}
+--- !u!1 &66795420
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 66795421}
+ m_Layer: 0
+ m_Name: serie
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &66795421
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 66795420}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 550587924}
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &66850234
GameObject:
m_ObjectHideFlags: 0
@@ -66792,6 +68904,41 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 113037161}
+--- !u!1 &113342243
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 113342244}
+ m_Layer: 0
+ m_Name: title
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &113342244
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 113342243}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 644475430}
+ - {fileID: 830996536}
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 1}
+ m_AnchorMax: {x: 0.5, y: 1}
+ m_AnchoredPosition: {x: 0, y: -5}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0.5, y: 1}
--- !u!1 &113467557
GameObject:
m_ObjectHideFlags: 0
@@ -78413,7 +80560,7 @@ RectTransform:
m_GameObject: {fileID: 127563937}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 803102854}
- {fileID: 898962844}
@@ -79245,7 +81392,7 @@ RectTransform:
m_GameObject: {fileID: 129441565}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1554084157}
- {fileID: 1109384323}
@@ -95823,7 +97970,7 @@ RectTransform:
m_GameObject: {fileID: 161422390}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 2093944214}
- {fileID: 298969830}
@@ -104678,6 +106825,75 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 185467610}
+--- !u!1 &185592099
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 185592100}
+ - component: {fileID: 185592102}
+ - component: {fileID: 185592101}
+ m_Layer: 0
+ m_Name: axis_radius_label
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &185592100
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 185592099}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 1564607019}
+ m_Father: {fileID: 1674437601}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 400}
+ m_SizeDelta: {x: 100, y: 50}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &185592101
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 185592099}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &185592102
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 185592099}
--- !u!1 &185835293
GameObject:
m_ObjectHideFlags: 0
@@ -108229,6 +110445,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 195654232}
+--- !u!1 &195753426
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 195753427}
+ - component: {fileID: 195753429}
+ - component: {fileID: 195753428}
+ m_Layer: 0
+ m_Name: axis_radius1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &195753427
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 195753426}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1188930632}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -30.666656, y: 15}
+ m_SizeDelta: {x: 35.333332, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &195753428
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 195753426}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0.25
+--- !u!222 &195753429
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 195753426}
--- !u!1 &195960578
GameObject:
m_ObjectHideFlags: 1
@@ -116408,7 +118698,7 @@ RectTransform:
m_GameObject: {fileID: 220157513}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children: []
m_Father: {fileID: 1693045525}
m_RootOrder: 1
@@ -116874,6 +119164,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 584, y: 300}
m_Pivot: {x: 0, y: 1}
+--- !u!1 &223210636
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 223210637}
+ - component: {fileID: 223210639}
+ - component: {fileID: 223210638}
+ m_Layer: 0
+ m_Name: axis_angle4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &223210637
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 223210636}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -89, y: -148.17175}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &223210638
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 223210636}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 120
+--- !u!222 &223210639
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 223210636}
--- !u!1 &223252523
GameObject:
m_ObjectHideFlags: 0
@@ -123389,6 +125753,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &237218502
MonoBehaviour:
@@ -132334,6 +134734,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &252560113
MonoBehaviour:
@@ -140327,6 +142763,80 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: 169}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &267739271
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 267739272}
+ - component: {fileID: 267739274}
+ - component: {fileID: 267739273}
+ m_Layer: 0
+ m_Name: axis_angle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &267739272
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 267739271}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: -178}
+ m_SizeDelta: {x: 20, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &267739273
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 267739271}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 90
+--- !u!222 &267739274
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 267739271}
--- !u!1 &267778007
GameObject:
m_ObjectHideFlags: 0
@@ -140822,7 +143332,7 @@ RectTransform:
m_GameObject: {fileID: 269342299}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 180654860}
- {fileID: 415907351}
@@ -148711,6 +151221,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 288011891}
+--- !u!1 &288250750
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 288250751}
+ - component: {fileID: 288250753}
+ - component: {fileID: 288250752}
+ m_Layer: 0
+ m_Name: axis_angle9
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &288250751
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 288250750}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -163, y: -20}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &288250752
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 288250750}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 270
+--- !u!222 &288250753
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 288250750}
--- !u!1 &288828533
GameObject:
m_ObjectHideFlags: 0
@@ -149458,6 +152042,51 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 290274136}
+--- !u!1 &290308876
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 290308877}
+ m_Layer: 0
+ m_Name: axis_angle
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &290308877
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 290308876}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 899185761}
+ - {fileID: 1473495963}
+ - {fileID: 1444570030}
+ - {fileID: 267739272}
+ - {fileID: 223210637}
+ - {fileID: 1675379335}
+ - {fileID: 1888822385}
+ - {fileID: 314711830}
+ - {fileID: 2131897789}
+ - {fileID: 1942753991}
+ - {fileID: 1117000738}
+ - {fileID: 402610252}
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &290518657
GameObject:
m_ObjectHideFlags: 0
@@ -151337,6 +153966,75 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 295502917}
+--- !u!1 &295663484
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 295663485}
+ - component: {fileID: 295663487}
+ - component: {fileID: 295663486}
+ m_Layer: 0
+ m_Name: content
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &295663485
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 295663484}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 867028034}
+ m_Father: {fileID: 1028307699}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0, y: 1}
+--- !u!114 &295663486
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 295663484}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 1
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &295663487
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 295663484}
--- !u!1 &295802381
GameObject:
m_ObjectHideFlags: 0
@@ -153649,6 +156347,39 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 302229987}
+--- !u!1 &302404042
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 302404043}
+ m_Layer: 0
+ m_Name: label
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &302404043
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 302404042}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &302584387
GameObject:
m_ObjectHideFlags: 0
@@ -158295,6 +161026,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 314385315}
+--- !u!1 &314711829
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 314711830}
+ - component: {fileID: 314711832}
+ - component: {fileID: 314711831}
+ m_Layer: 0
+ m_Name: axis_angle7
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &314711830
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 314711829}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -143.17177, y: 53.999985}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &314711831
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 314711829}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 210
+--- !u!222 &314711832
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 314711829}
--- !u!1 &314842375
GameObject:
m_ObjectHideFlags: 0
@@ -161399,6 +164204,80 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: 155}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &323918643
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 323918644}
+ - component: {fileID: 323918646}
+ - component: {fileID: 323918645}
+ m_Layer: 0
+ m_Name: axis_radius4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &323918644
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 323918643}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1188930632}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -18, y: 120}
+ m_SizeDelta: {x: 10, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &323918645
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 323918643}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 1
+--- !u!222 &323918646
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 323918643}
--- !u!1 &324123987
GameObject:
m_ObjectHideFlags: 0
@@ -163603,7 +166482,7 @@ RectTransform:
m_GameObject: {fileID: 330527285}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 2144044774}
- {fileID: 71281871}
@@ -166894,6 +169773,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 340682491}
+--- !u!1 &340778371
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 340778372}
+ - component: {fileID: 340778374}
+ - component: {fileID: 340778373}
+ m_Layer: 0
+ m_Name: axis_radius4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &340778372
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 340778371}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 736610679}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 140, y: 3}
+ m_SizeDelta: {x: 10, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &340778373
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 340778371}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 5
+--- !u!222 &340778374
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 340778371}
--- !u!1 &340880177
GameObject:
m_ObjectHideFlags: 0
@@ -169830,6 +172783,39 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 350526524}
+--- !u!1 &350651565
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 350651566}
+ m_Layer: 0
+ m_Name: legend
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &350651566
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 350651565}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &350652523
GameObject:
m_ObjectHideFlags: 0
@@ -187322,6 +190308,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &384774272
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 384774273}
+ - component: {fileID: 384774275}
+ - component: {fileID: 384774274}
+ m_Layer: 0
+ m_Name: axis_angle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &384774273
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 384774272}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 138.17175, y: 54}
+ m_SizeDelta: {x: 20, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &384774274
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 384774272}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 60
+--- !u!222 &384774275
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 384774272}
--- !u!1 &384820133
GameObject:
m_ObjectHideFlags: 0
@@ -193411,6 +196471,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 402350981}
+--- !u!1 &402610251
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 402610252}
+ - component: {fileID: 402610254}
+ - component: {fileID: 402610253}
+ m_Layer: 0
+ m_Name: axis_angle11
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &402610252
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 402610251}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 11
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 143.17175, y: 54.000015}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &402610253
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 402610251}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 330
+--- !u!222 &402610254
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 402610251}
--- !u!1 &402701346
GameObject:
m_ObjectHideFlags: 0
@@ -195024,7 +198158,7 @@ RectTransform:
m_GameObject: {fileID: 406692625}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 808536895}
- {fileID: 956283408}
@@ -204630,7 +207764,7 @@ RectTransform:
m_GameObject: {fileID: 421578711}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 488709034}
- {fileID: 892875815}
@@ -209785,7 +212919,7 @@ RectTransform:
m_GameObject: {fileID: 431108751}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 2097272238}
- {fileID: 727387705}
@@ -210963,7 +214097,7 @@ RectTransform:
m_GameObject: {fileID: 435669178}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1752801056}
- {fileID: 1890225740}
@@ -232054,6 +235188,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &449913328
MonoBehaviour:
@@ -233846,6 +237016,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &453606764
MonoBehaviour:
@@ -240042,7 +243248,7 @@ RectTransform:
m_GameObject: {fileID: 471033837}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 63630463}
- {fileID: 1984195183}
@@ -256451,7 +259657,7 @@ RectTransform:
m_GameObject: {fileID: 510549830}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 619894595}
- {fileID: 45664690}
@@ -264011,6 +267217,41 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 525742115}
+--- !u!1 &525901932
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 525901933}
+ m_Layer: 0
+ m_Name: title
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &525901933
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 525901932}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1685087859}
+ - {fileID: 1047392757}
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 1}
+ m_AnchorMax: {x: 0.5, y: 1}
+ m_AnchoredPosition: {x: 0, y: -5}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0.5, y: 1}
--- !u!1 &526327334
GameObject:
m_ObjectHideFlags: 0
@@ -274708,6 +277949,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 550535470}
+--- !u!1 &550587923
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 550587924}
+ - component: {fileID: 550587926}
+ - component: {fileID: 550587925}
+ m_Layer: 0
+ m_Name: title_0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &550587924
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 550587923}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 66795421}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 50, y: 12}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &550587925
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 550587923}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text:
+--- !u!222 &550587926
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 550587923}
--- !u!1 &550837816
GameObject:
m_ObjectHideFlags: 0
@@ -277203,6 +280518,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 556957087}
+--- !u!1 &556977377
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 556977378}
+ - component: {fileID: 556977380}
+ - component: {fileID: 556977379}
+ m_Layer: 0
+ m_Name: axis_radius2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &556977378
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 556977377}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1188930632}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -25.666656, y: 50}
+ m_SizeDelta: {x: 25.333334, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &556977379
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 556977377}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0.5
+--- !u!222 &556977380
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 556977377}
--- !u!1 &557312276
GameObject:
m_ObjectHideFlags: 0
@@ -280473,7 +283862,7 @@ RectTransform:
m_GameObject: {fileID: 565287147}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 243911686}
- {fileID: 65641}
@@ -362220,7 +365609,7 @@ RectTransform:
m_GameObject: {fileID: 637823617}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 338657451}
- {fileID: 1883385462}
@@ -364496,6 +367885,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 644231491}
+--- !u!1 &644475429
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 644475430}
+ - component: {fileID: 644475432}
+ - component: {fileID: 644475431}
+ m_Layer: 0
+ m_Name: title
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &644475430
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 644475429}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 113342244}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 1}
+ m_AnchorMax: {x: 0.5, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 16}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &644475431
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 644475429}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 1
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: PolarChart
+--- !u!222 &644475432
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 644475429}
--- !u!1 &644501904
GameObject:
m_ObjectHideFlags: 0
@@ -364675,6 +368138,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &645064866
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 645064867}
+ - component: {fileID: 645064869}
+ - component: {fileID: 645064868}
+ m_Layer: 0
+ m_Name: axis_angle11
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &645064867
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 645064866}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 11
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -89.00003, y: 108.171745}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &645064868
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 645064866}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 330
+--- !u!222 &645064869
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 645064866}
--- !u!1 &645234928
GameObject:
m_ObjectHideFlags: 0
@@ -377913,7 +381450,7 @@ RectTransform:
m_GameObject: {fileID: 668286615}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1326963984}
m_Father: {fileID: 472702066}
@@ -397103,7 +400640,7 @@ RectTransform:
m_GameObject: {fileID: 719582876}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 544362238}
- {fileID: 111276663}
@@ -401546,6 +405083,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &728093146
MonoBehaviour:
@@ -406663,6 +410236,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 733683960}
+--- !u!1 &734269222
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 734269223}
+ - component: {fileID: 734269225}
+ - component: {fileID: 734269224}
+ m_Layer: 0
+ m_Name: axis_radius2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &734269223
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 734269222}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 736610679}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 70, y: 3}
+ m_SizeDelta: {x: 25.333334, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &734269224
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 734269222}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 2.5
+--- !u!222 &734269225
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 734269222}
--- !u!1 &734277993
GameObject:
m_ObjectHideFlags: 0
@@ -407340,6 +410987,44 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 736279383}
+--- !u!1 &736610678
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 736610679}
+ m_Layer: 0
+ m_Name: axis_radius
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &736610679
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 736610678}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1042776123}
+ - {fileID: 1416555762}
+ - {fileID: 734269223}
+ - {fileID: 1573458820}
+ - {fileID: 340778372}
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &736662057
GameObject:
m_ObjectHideFlags: 0
@@ -419833,6 +423518,40 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 770030533}
+--- !u!1 &770130473
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 770130474}
+ m_Layer: 0
+ m_Name: serie
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &770130474
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 770130473}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1899969978}
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &770165730
GameObject:
m_ObjectHideFlags: 0
@@ -421755,6 +425474,51039 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 775441996}
+--- !u!1 &775491346
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 775491347}
+ - component: {fileID: 775491348}
+ - component: {fileID: 775491349}
+ m_Layer: 0
+ m_Name: PolarChart
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &775491347
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 775491346}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 113342244}
+ - {fileID: 961687634}
+ - {fileID: 302404043}
+ - {fileID: 770130474}
+ - {fileID: 1188930632}
+ - {fileID: 2093670171}
+ - {fileID: 1028307699}
+ m_Father: {fileID: 1598106459}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 2, y: -2}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
+--- !u!222 &775491348
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 775491346}
+--- !u!114 &775491349
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 775491346}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 52fd81110b7774a4096479f4cd777579, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_DebugMode: 0
+ m_ChartName:
+ m_ThemeInfo:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Theme: 0
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_BackgroundColor:
+ serializedVersion: 2
+ rgba: 4294967295
+ m_TitleTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_TitleSubTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_LegendTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_LegendUnableColor:
+ serializedVersion: 2
+ rgba: 4291611852
+ m_AxisTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_AxisLineColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_AxisSplitLineColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_TooltipBackgroundColor:
+ serializedVersion: 2
+ rgba: 3360772433
+ m_TooltipFlagAreaColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_TooltipTextColor:
+ serializedVersion: 2
+ rgba: 4294967295
+ m_TooltipLabelColor:
+ serializedVersion: 2
+ rgba: 4280887593
+ m_TooltipLineColor:
+ serializedVersion: 2
+ rgba: 1680419113
+ m_DataZoomTextColor:
+ serializedVersion: 2
+ rgba: 4283256145
+ m_DataZoomLineColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_DataZoomSelectedColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_VisualMapBackgroundColor:
+ serializedVersion: 2
+ rgba: 542200145
+ m_VisualMapBorderColor:
+ serializedVersion: 2
+ rgba: 4291611852
+ m_ColorPalette:
+ - serializedVersion: 2
+ rgba: 4281415106
+ - serializedVersion: 2
+ rgba: 4283712815
+ - serializedVersion: 2
+ rgba: 4289241185
+ - serializedVersion: 2
+ rgba: 4284842708
+ - serializedVersion: 2
+ rgba: 4289644433
+ - serializedVersion: 2
+ rgba: 4286816116
+ - serializedVersion: 2
+ rgba: 4280452810
+ - serializedVersion: 2
+ rgba: 4288324285
+ - serializedVersion: 2
+ rgba: 4285821038
+ - serializedVersion: 2
+ rgba: 4285556052
+ - serializedVersion: 2
+ rgba: 4292070596
+ m_CustomFont: {fileID: 0}
+ m_CustomBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTitleTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTitleSubTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomLegendTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomLegendUnableColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomAxisTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomAxisLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomAxisSplitLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipFlagAreaColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipLabelColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomTooltipLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomDataZoomTextColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomDataZoomLineColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomDataZoomSelectedColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomVisualMapBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomVisualMapBorderColor:
+ serializedVersion: 2
+ rgba: 0
+ m_CustomColorPalette:
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ - serializedVersion: 2
+ rgba: 0
+ m_Title:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Text: PolarChart
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_SubText:
+ m_SubTextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 14
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_ItemGap: 8
+ m_Location:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Align: 2
+ m_Left: 0
+ m_Right: 0
+ m_Top: 5
+ m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
+ m_Legend:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_SelectedMode: 0
+ m_Orient: 0
+ m_Location:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Align: 2
+ m_Left: 0
+ m_Right: 0
+ m_Top: 30
+ m_Bottom: 0
+ m_ItemWidth: 24
+ m_ItemHeight: 12
+ m_ItemGap: 10
+ m_ItemAutoColor: 1
+ m_Formatter:
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 2, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_Data: []
+ m_Icons: []
+ m_Tooltip:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 1
+ m_Formatter:
+ m_ItemFormatter:
+ m_TitleFormatter:
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_MinWidth: 0
+ m_MinHeight: 0
+ m_NumericFormatter:
+ m_PaddingLeftRight: 5
+ m_PaddingTopBottom: 5
+ m_IgnoreDataDefaultContent: '-'
+ m_AlwayShow: 0
+ m_BackgroundImage: {fileID: 0}
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.7
+ m_Opacity: 1
+ m_Series:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Series:
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Name: line1
+ m_Stack:
+ m_AxisIndex: 0
+ m_RadarIndex: 0
+ m_MinShow: 0
+ m_MaxShow: 0
+ m_MaxCache: 0
+ m_AreaStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Origin: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipHighlight: 0
+ m_HighlightColor: {r: 0, g: 0, b: 0, a: 0}
+ m_HighlightToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 2.5
+ m_SelectedSize: 5
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_SampleDist: 0
+ m_SampleType: 1
+ m_SampleAverage: 0
+ m_LineType: 0
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.8
+ m_Opacity: 1
+ m_BarType: 0
+ m_BarPercentStack: 0
+ m_BarWidth: 0.6
+ m_BarGap: 0.3
+ m_BarCategoryGap: 0.2
+ m_BarZebraWidth: 4
+ m_BarZebraGap: 2
+ m_Min: 0
+ m_Max: 0
+ m_StartAngle: 0
+ m_EndAngle: 0
+ m_Clockwise: 1
+ m_RoundCap: 0
+ m_RingGap: 10
+ m_SplitNumber: 0
+ m_GaugeType: 0
+ m_GaugeAxis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_AxisLine:
+ m_Show: 1
+ m_Width: 15
+ m_Opacity: 1
+ m_BarColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BarBackgroundColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
+ m_StageColor:
+ - m_Percent: 0.2
+ m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1}
+ - m_Percent: 0.8
+ m_Color: {r: 0.3882353, g: 0.5254902, b: 0.61960787, a: 1}
+ - m_Percent: 1
+ m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1}
+ m_SplitLine:
+ m_Show: 1
+ m_Length: 15
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1}
+ m_Width: 1.5
+ m_Opacity: 1
+ m_AxisTick:
+ m_Show: 1
+ m_Length: 5
+ m_SplitNumber: 5
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1}
+ m_Width: 1
+ m_Opacity: 1
+ m_AxisLabel:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_AxisLabelText: []
+ runtimeStageAngle: []
+ runtimeLabelPosition: []
+ m_GaugePointer:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Length: 0.8
+ m_Width: 15
+ m_ClickOffset: 1
+ m_RoseType: 0
+ m_Space: 0
+ m_Center:
+ - 0.5
+ - 0.5
+ m_Radius:
+ - 0
+ - 80
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_Animation:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Enable: 1
+ m_Easting: 0
+ m_Threshold: 2000
+ m_FadeInDuration: 1000
+ m_FadeInDelay: 0
+ m_FadeOutDuration: 1000
+ m_FadeOutDelay: 0
+ m_DataChangeEnable: 1
+ m_DataChangeDuration: 500
+ m_ActualDuration: 0
+ m_CurrDetailProgress: 0
+ m_DestDetailProgress: 361
+ m_LineArrow:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Width: 10
+ m_Height: 15
+ m_Offset: 0
+ m_Dent: 3
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_TitleStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_TextStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Font: {fileID: 0}
+ m_Rotate: 0
+ m_Offset: {x: 0, y: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_LineSpacing: 1
+ m_ShowDataDimension: 2
+ m_ShowDataName: 0
+ m_ShowDataIcon: 0
+ m_Clip: 0
+ m_Ignore: 0
+ m_IgnoreValue: 0
+ m_ShowAsPositiveNumber: 0
+ m_Large: 1
+ m_LargeThreshold: 200
+ m_AvoidLabelOverlap: 0
+ m_RadarType: 0
+ m_Data:
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0
+ - 0
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975647
+ - 1
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.1391731
+ - 2
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.2079117
+ - 3
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563736
+ - 4
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202015
+ - 5
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673667
+ - 6
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947157
+ - 7
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991927
+ - 8
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877853
+ - 9
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.64278764
+ - 10
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.69465834
+ - 11
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431448
+ - 12
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801084
+ - 13
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903755
+ - 14
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660254
+ - 15
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 16
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271839
+ - 17
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105654
+ - 18
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702958
+ - 19
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 20
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945219
+ - 21
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 22
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 23
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945219
+ - 24
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 25
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 26
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105654
+ - 27
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271838
+ - 28
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 29
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660254
+ - 30
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8290375
+ - 31
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880108
+ - 32
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431448
+ - 33
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946582
+ - 34
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.64278764
+ - 35
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.58778524
+ - 36
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5299191
+ - 37
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947157
+ - 38
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673658
+ - 39
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202
+ - 40
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563736
+ - 41
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791161
+ - 42
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917296
+ - 43
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975647
+ - 44
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.00000008742278
+ - 45
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975664
+ - 46
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917312
+ - 47
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791179
+ - 48
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563754
+ - 49
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202015
+ - 50
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673673
+ - 51
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947172
+ - 52
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991927
+ - 53
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877853
+ - 54
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427878
+ - 55
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946584
+ - 56
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431449
+ - 57
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880107
+ - 58
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903755
+ - 59
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660255
+ - 60
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 61
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271839
+ - 62
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9510564
+ - 63
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 64
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 65
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.994522
+ - 66
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 67
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 68
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945218
+ - 69
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 70
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 71
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9510565
+ - 72
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271838
+ - 73
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8987939
+ - 74
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660255
+ - 75
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903755
+ - 76
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880107
+ - 77
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314475
+ - 78
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946582
+ - 79
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427874
+ - 80
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.58778495
+ - 81
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991927
+ - 82
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947148
+ - 83
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.4067365
+ - 84
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34201992
+ - 85
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563706
+ - 86
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791176
+ - 87
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.1391731
+ - 88
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975638
+ - 89
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.00000017484555
+ - 90
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975673
+ - 91
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917343
+ - 92
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.2079121
+ - 93
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563736
+ - 94
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.3420202
+ - 95
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673682
+ - 96
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947178
+ - 97
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991956
+ - 98
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877856
+ - 99
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.64278764
+ - 100
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946584
+ - 101
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.743145
+ - 102
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801095
+ - 103
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8290378
+ - 104
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.86602557
+ - 105
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 106
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271839
+ - 107
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105666
+ - 108
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 109
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 110
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945219
+ - 111
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 112
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 113
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945218
+ - 114
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848077
+ - 115
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 116
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105636
+ - 117
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.92718387
+ - 118
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879376
+ - 119
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.86602527
+ - 120
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903767
+ - 121
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880105
+ - 122
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431448
+ - 123
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.694658
+ - 124
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427875
+ - 125
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877854
+ - 126
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.529919
+ - 127
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947163
+ - 128
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673617
+ - 129
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202006
+ - 130
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563673
+ - 131
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791145
+ - 132
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917324
+ - 133
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975605
+ - 134
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.000000023849761
+ - 135
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975705
+ - 136
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917328
+ - 137
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791243
+ - 138
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.2756377
+ - 139
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202006
+ - 140
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673712
+ - 141
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947166
+ - 142
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991986
+ - 143
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877855
+ - 144
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427875
+ - 145
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.69465864
+ - 146
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314487
+ - 147
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801113
+ - 148
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8290377
+ - 149
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.86602527
+ - 150
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879423
+ - 151
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.92718387
+ - 152
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105666
+ - 153
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 154
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.98480785
+ - 155
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.994522
+ - 156
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 157
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 158
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945219
+ - 159
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.98480767
+ - 160
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.97029567
+ - 161
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9510563
+ - 162
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271836
+ - 163
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 164
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.86602515
+ - 165
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8290375
+ - 166
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801036
+ - 167
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314463
+ - 168
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.69465846
+ - 169
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427872
+ - 170
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877852
+ - 171
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991873
+ - 172
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947134
+ - 173
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673676
+ - 174
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34201974
+ - 175
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563733
+ - 176
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791112
+ - 177
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917293
+ - 178
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.069755726
+ - 179
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.0000003496911
+ - 180
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.069756426
+ - 181
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917361
+ - 182
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791182
+ - 183
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563798
+ - 184
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.3420204
+ - 185
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673742
+ - 186
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947196
+ - 187
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5299193
+ - 188
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877857
+ - 189
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.64278775
+ - 190
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946589
+ - 191
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431451
+ - 192
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880107
+ - 193
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903785
+ - 194
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660255
+ - 195
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879435
+ - 196
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271839
+ - 197
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105684
+ - 198
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.97029585
+ - 199
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 200
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99452204
+ - 201
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 202
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 203
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945218
+ - 204
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 205
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.97029567
+ - 206
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9510565
+ - 207
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.92718357
+ - 208
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.898794
+ - 209
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.866025
+ - 210
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903725
+ - 211
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801066
+ - 212
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431444
+ - 213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.69465816
+ - 214
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.642787
+ - 215
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.58778495
+ - 216
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991927
+ - 217
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947107
+ - 218
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673646
+ - 219
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34201944
+ - 220
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563703
+ - 221
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791174
+ - 222
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.1391726
+ - 223
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975636
+ - 224
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.0000006755325
+ - 225
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.069756754
+ - 226
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917394
+ - 227
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791212
+ - 228
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.2756374
+ - 229
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202072
+ - 230
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673682
+ - 231
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.4694714
+ - 232
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5299204
+ - 233
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.587786
+ - 234
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.64278805
+ - 235
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.69465846
+ - 236
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314463
+ - 237
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801155
+ - 238
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.829038
+ - 239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.86602557
+ - 240
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 241
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.92718375
+ - 242
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105684
+ - 243
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.97029597
+ - 244
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 245
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945219
+ - 246
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 247
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 248
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945218
+ - 249
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.98480767
+ - 250
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702957
+ - 251
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105666
+ - 252
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.92718345
+ - 253
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879376
+ - 254
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.86602527
+ - 255
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903767
+ - 256
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880099
+ - 257
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314415
+ - 258
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946579
+ - 259
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427875
+ - 260
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877854
+ - 261
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991813
+ - 262
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947077
+ - 263
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673617
+ - 264
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202003
+ - 265
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563763
+ - 266
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791048
+ - 267
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917227
+ - 268
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975603
+ - 269
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.000000047699523
+ - 270
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975613
+ - 271
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917425
+ - 272
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791245
+ - 273
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563772
+ - 274
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.3420201
+ - 275
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673798
+ - 276
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947253
+ - 277
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5299198
+ - 278
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.58778554
+ - 279
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427875
+ - 280
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946594
+ - 281
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431455
+ - 282
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801113
+ - 283
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8290377
+ - 284
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660253
+ - 285
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879465
+ - 286
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271842
+ - 287
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105666
+ - 288
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702958
+ - 289
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.98480767
+ - 290
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99452204
+ - 291
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 292
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 293
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9945219
+ - 294
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9848078
+ - 295
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9702955
+ - 296
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9510563
+ - 297
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271836
+ - 298
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879405
+ - 299
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8660256
+ - 300
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903695
+ - 301
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801036
+ - 302
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314463
+ - 303
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946584
+ - 304
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427865
+ - 305
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877844
+ - 306
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.52991873
+ - 307
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.4694713
+ - 308
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673673
+ - 309
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34201884
+ - 310
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563637
+ - 311
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791109
+ - 312
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.1391729
+ - 313
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.06975666
+ - 314
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.0000013272152
+ - 315
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.0697574
+ - 316
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917363
+ - 317
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791183
+ - 318
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.27563712
+ - 319
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34202132
+ - 320
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.40673745
+ - 321
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.469472
+ - 322
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5299193
+ - 323
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5877865
+ - 324
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427885
+ - 325
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.69465894
+ - 326
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7431451
+ - 327
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.7880108
+ - 328
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.82903844
+ - 329
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.866026
+ - 330
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.89879435
+ - 331
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271839
+ - 332
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.95105654
+ - 333
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.970296
+ - 334
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.98480785
+ - 335
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99452204
+ - 336
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99939084
+ - 337
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9993908
+ - 338
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.99452174
+ - 339
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.98480755
+ - 340
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.97029567
+ - 341
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9510565
+ - 342
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.9271839
+ - 343
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8987935
+ - 344
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.866025
+ - 345
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.8290373
+ - 346
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.78801066
+ - 347
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.74314505
+ - 348
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6946575
+ - 349
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.6427869
+ - 350
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.58778495
+ - 351
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.5299192
+ - 352
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.46947017
+ - 353
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.4067356
+ - 354
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.34201944
+ - 355
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.275637
+ - 356
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.20791171
+ - 357
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.13917163
+ - 358
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.069755375
+ - 359
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_AutoOffset: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableSymbol: 0
+ m_Symbol:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_SizeType: 0
+ m_Size: 6
+ m_SelectedSize: 10
+ m_DataIndex: 1
+ m_DataScale: 1
+ m_SelectedDataScale: 1.5
+ m_StartIndex: 0
+ m_Interval: 0
+ m_ForceShowLast: 0
+ m_Gap: 0
+ m_Data:
+ - 0.0000006993822
+ - 360
+ m_Settings:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_LineSmoothStyle: 3
+ m_LineSmoothness: 2
+ m_LineSegmentDistance: 3
+ m_CicleSmoothness: 2
+ m_VisualMapTriangeLen: 20
+ m_PieTooltipExtraRadius: 8
+ m_PieSelectedOffset: 8
+ m_Polar:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Center:
+ - 0.5
+ - 0.45
+ m_Radius: 0.35
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_RadiusAxis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_MinMaxType: 0
+ m_Min: 0
+ m_Max: 0
+ m_SplitNumber: 5
+ m_Interval: 0
+ m_BoundaryGap: 0
+ m_MaxCache: 0
+ m_LogBase: 10
+ m_LogBaseE: 0
+ m_CeilRate: 0
+ m_Inverse: 0
+ m_Data: []
+ m_AxisLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_OnZero: 1
+ m_Width: 0.7
+ m_Symbol: 0
+ m_SymbolWidth: 10
+ m_SymbolHeight: 15
+ m_SymbolOffset: -5
+ m_SymbolDent: 3
+ m_AxisName:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Name: axisName
+ m_Location: 2
+ m_Offset: {x: 0, y: 0}
+ m_Rotate: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_AxisTick:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_AlignWithLabel: 0
+ m_Inside: 0
+ m_Length: 5
+ m_Width: 0
+ m_AxisLabel:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Formatter:
+ m_Interval: 0
+ m_Inside: 0
+ m_Rotate: 0
+ m_Margin: 8
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_NumericFormatter:
+ m_ShowAsPositiveNumber: 0
+ m_OnZero: 0
+ m_TextLimit:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Enable: 0
+ m_MaxWidth: 0
+ m_Gap: 1
+ m_Suffix: '...'
+ m_SplitLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Interval: 0
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.7
+ m_Opacity: 1
+ m_SplitArea:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color:
+ - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608}
+ - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608}
+ m_AngleAxis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_MinMaxType: 2
+ m_Min: 0
+ m_Max: 360
+ m_SplitNumber: 13
+ m_Interval: 0
+ m_BoundaryGap: 0
+ m_MaxCache: 0
+ m_LogBase: 10
+ m_LogBaseE: 0
+ m_CeilRate: 0
+ m_Inverse: 0
+ m_Data: []
+ m_AxisLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_OnZero: 1
+ m_Width: 0.7
+ m_Symbol: 0
+ m_SymbolWidth: 10
+ m_SymbolHeight: 15
+ m_SymbolOffset: -5
+ m_SymbolDent: 3
+ m_AxisName:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Name: axisName
+ m_Location: 2
+ m_Offset: {x: 0, y: 0}
+ m_Rotate: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_AxisTick:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_AlignWithLabel: 0
+ m_Inside: 0
+ m_Length: 5
+ m_Width: 0
+ m_AxisLabel:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Formatter:
+ m_Interval: 0
+ m_Inside: 0
+ m_Rotate: 0
+ m_Margin: 8
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_NumericFormatter:
+ m_ShowAsPositiveNumber: 0
+ m_OnZero: 0
+ m_TextLimit:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Enable: 0
+ m_MaxWidth: 0
+ m_Gap: 1
+ m_Suffix: '...'
+ m_SplitLine:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Interval: 0
+ m_LineStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Type: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_Width: 0.7
+ m_Opacity: 1
+ m_SplitArea:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color:
+ - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608}
+ - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608}
+ m_StartAngle: 90
+ m_Clockwise: 1
--- !u!1 &775500413
GameObject:
m_ObjectHideFlags: 0
@@ -427531,6 +482283,75 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &785639234
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 785639235}
+ - component: {fileID: 785639237}
+ - component: {fileID: 785639236}
+ m_Layer: 0
+ m_Name: content
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &785639235
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 785639234}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 998103142}
+ m_Father: {fileID: 1674437601}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0, y: 1}
+--- !u!114 &785639236
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 785639234}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 1
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &785639237
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 785639234}
--- !u!1 &785713739
GameObject:
m_ObjectHideFlags: 0
@@ -444495,6 +499316,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 830865161}
+--- !u!1 &830996535
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 830996536}
+ - component: {fileID: 830996538}
+ - component: {fileID: 830996537}
+ m_Layer: 0
+ m_Name: title_sub
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!224 &830996536
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 830996535}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 113342244}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 1}
+ m_AnchorMax: {x: 0.5, y: 1}
+ m_AnchoredPosition: {x: 0, y: -24}
+ m_SizeDelta: {x: 582.97, y: 14}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &830996537
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 830996535}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 14
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 1
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text:
+--- !u!222 &830996538
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 830996535}
--- !u!1 &831013492
GameObject:
m_ObjectHideFlags: 0
@@ -447699,7 +502594,7 @@ RectTransform:
m_GameObject: {fileID: 840065881}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1352653497}
- {fileID: 807732930}
@@ -449383,6 +504278,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 843997811}
+--- !u!1 &844229458
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 844229459}
+ - component: {fileID: 844229461}
+ - component: {fileID: 844229460}
+ m_Layer: 5
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &844229459
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 844229458}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 986402340}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &844229460
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 844229458}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 22
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 2
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 0
+ m_VerticalOverflow: 0
+ m_LineSpacing: 1
+ m_Text: "\u6781\u5750\u6807"
+--- !u!222 &844229461
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 844229458}
--- !u!1 &844408418
GameObject:
m_ObjectHideFlags: 0
@@ -452063,7 +507032,7 @@ RectTransform:
m_GameObject: {fileID: 849475306}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 982486399}
- {fileID: 1855971603}
@@ -454758,6 +509727,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &855605996
MonoBehaviour:
@@ -454778,8 +509783,8 @@ MonoBehaviour:
m_SelectOnRight: {fileID: 0}
m_Transition: 1
m_Colors:
- m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1}
- m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1}
+ m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1}
+ m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1}
m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
@@ -459141,6 +514146,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &867028033
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 867028034}
+ - component: {fileID: 867028036}
+ - component: {fileID: 867028035}
+ m_Layer: 0
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &867028034
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 867028033}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 295663485}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 3, y: -3}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0, y: 1}
+--- !u!114 &867028035
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 867028033}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 0
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Text
+--- !u!222 &867028036
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 867028033}
--- !u!1 &867047259
GameObject:
m_ObjectHideFlags: 0
@@ -462315,7 +517394,7 @@ RectTransform:
m_GameObject: {fileID: 873134763}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 708885230}
- {fileID: 832037432}
@@ -465386,6 +520465,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 880652025}
+--- !u!1 &880695215
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 880695216}
+ - component: {fileID: 880695218}
+ - component: {fileID: 880695217}
+ m_Layer: 0
+ m_Name: axis_angle6
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &880695216
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 880695215}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: -178}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &880695217
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 880695215}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 180
+--- !u!222 &880695218
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 880695215}
--- !u!1 &880700264
GameObject:
m_ObjectHideFlags: 0
@@ -475866,6 +531019,80 @@ RectTransform:
m_AnchoredPosition: {x: -586.56, y: -169}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &899185760
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 899185761}
+ - component: {fileID: 899185763}
+ - component: {fileID: 899185762}
+ m_Layer: 0
+ m_Name: axis_angle0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &899185761
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 899185760}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 153, y: -20}
+ m_SizeDelta: {x: 10, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &899185762
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 899185760}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0
+--- !u!222 &899185763
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 899185760}
--- !u!1 &899243566
GameObject:
m_ObjectHideFlags: 0
@@ -481956,6 +537183,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 915348880}
+--- !u!1 &915462741
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 915462742}
+ - component: {fileID: 915462744}
+ - component: {fileID: 915462743}
+ m_Layer: 0
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &915462742
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 915462741}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 996531148}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 1, y: 1}
+--- !u!114 &915462743
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 915462741}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Text
+--- !u!222 &915462744
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 915462741}
--- !u!1 &915526319
GameObject:
m_ObjectHideFlags: 0
@@ -502829,7 +558130,7 @@ GameObject:
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
- m_IsActive: 1
+ m_IsActive: 0
--- !u!224 &945062866
RectTransform:
m_ObjectHideFlags: 0
@@ -503729,6 +559030,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &946052564
MonoBehaviour:
@@ -509878,13 +565215,11 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 4cbfef5a9a03149f6a1ddf4ebe502bf6, type: 3}
m_Name:
m_EditorClassIdentifier:
- m_NowVersion: 1.5.1_20200603
+ m_NowVersion: 1.5.2_20200625
m_NewVersion: 1.0.0 (20191022)
m_ChartList:
- - {fileID: 1000969946}
- - {fileID: 1693045526}
- - {fileID: 1867673944}
- - {fileID: 472702068}
+ - {fileID: 19051741}
+ - {fileID: 775491349}
--- !u!4 &953846993
Transform:
m_ObjectHideFlags: 0
@@ -512626,6 +567961,39 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 961363495}
+--- !u!1 &961687633
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 961687634}
+ m_Layer: 0
+ m_Name: legend
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &961687634
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 961687633}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &961853745
GameObject:
m_ObjectHideFlags: 0
@@ -516052,7 +571420,7 @@ RectTransform:
m_GameObject: {fileID: 968859628}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1802392353}
- {fileID: 949169158}
@@ -522627,6 +577995,161 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 986345868}
+--- !u!1 &986402339
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 986402340}
+ - component: {fileID: 986402344}
+ - component: {fileID: 986402343}
+ - component: {fileID: 986402342}
+ - component: {fileID: 986402341}
+ m_Layer: 5
+ m_Name: "btn_\u6781\u5750\u6807"
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &986402340
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 986402339}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 844229459}
+ m_Father: {fileID: 1984073382}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &986402341
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 986402339}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!114 &986402342
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 986402339}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Navigation:
+ m_Mode: 3
+ m_SelectOnUp: {fileID: 0}
+ m_SelectOnDown: {fileID: 0}
+ m_SelectOnLeft: {fileID: 0}
+ m_SelectOnRight: {fileID: 0}
+ m_Transition: 1
+ m_Colors:
+ m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1}
+ m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1}
+ m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1}
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
+ m_ColorMultiplier: 1
+ m_FadeDuration: 0.1
+ m_SpriteState:
+ m_HighlightedSprite: {fileID: 0}
+ m_PressedSprite: {fileID: 0}
+ m_DisabledSprite: {fileID: 0}
+ m_AnimationTriggers:
+ m_NormalTrigger: Normal
+ m_HighlightedTrigger: Highlighted
+ m_PressedTrigger: Pressed
+ m_DisabledTrigger: Disabled
+ m_Interactable: 1
+ m_TargetGraphic: {fileID: 986402343}
+ m_OnClick:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
+ Culture=neutral, PublicKeyToken=null
+--- !u!114 &986402343
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 986402339}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 1
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &986402344
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 986402339}
--- !u!1 &986471108
GameObject:
m_ObjectHideFlags: 0
@@ -657100,6 +712623,75 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 996518544}
+--- !u!1 &996531147
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 996531148}
+ - component: {fileID: 996531150}
+ - component: {fileID: 996531149}
+ m_Layer: 0
+ m_Name: axis_angle_label
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &996531148
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 996531147}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 915462742}
+ m_Father: {fileID: 1674437601}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 400}
+ m_SizeDelta: {x: 100, y: 50}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &996531149
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 996531147}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &996531150
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 996531147}
--- !u!1 &996572364
GameObject:
m_ObjectHideFlags: 0
@@ -657962,6 +713554,80 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: -150}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &998103141
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 998103142}
+ - component: {fileID: 998103144}
+ - component: {fileID: 998103143}
+ m_Layer: 0
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &998103142
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 998103141}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 785639235}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 3, y: -3}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0, y: 1}
+--- !u!114 &998103143
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 998103141}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 0
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Text
+--- !u!222 &998103144
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 998103141}
--- !u!1 &998426440
GameObject:
m_ObjectHideFlags: 0
@@ -667810,7 +723476,7 @@ RectTransform:
m_GameObject: {fileID: 1019776373}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 402350982}
m_Father: {fileID: 1000969945}
@@ -670921,6 +726587,42 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1028234201}
+--- !u!1 &1028307698
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1028307699}
+ m_Layer: 0
+ m_Name: tooltip
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!224 &1028307699
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1028307698}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 295663485}
+ - {fileID: 55778848}
+ - {fileID: 1581221350}
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &1028598727
GameObject:
m_ObjectHideFlags: 0
@@ -675609,6 +731311,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1042776122
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1042776123}
+ - component: {fileID: 1042776125}
+ - component: {fileID: 1042776124}
+ m_Layer: 0
+ m_Name: axis_radius0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1042776123
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1042776122}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 736610679}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 3}
+ m_SizeDelta: {x: 10, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1042776124
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1042776122}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0
+--- !u!222 &1042776125
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1042776122}
--- !u!1 &1042928215
GameObject:
m_ObjectHideFlags: 0
@@ -677440,6 +733216,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1047392756
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1047392757}
+ - component: {fileID: 1047392759}
+ - component: {fileID: 1047392758}
+ m_Layer: 0
+ m_Name: title_sub
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!224 &1047392757
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1047392756}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 525901933}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 1}
+ m_AnchorMax: {x: 0.5, y: 1}
+ m_AnchoredPosition: {x: 0, y: -24}
+ m_SizeDelta: {x: 582.97, y: 14}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &1047392758
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1047392756}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 14
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 1
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text:
+--- !u!222 &1047392759
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1047392756}
--- !u!1 &1047443849
GameObject:
m_ObjectHideFlags: 0
@@ -677998,7 +733848,7 @@ RectTransform:
m_GameObject: {fileID: 1048355828}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1249781941}
- {fileID: 1562416261}
@@ -684622,7 +740472,7 @@ RectTransform:
m_Children:
- {fileID: 1567986366}
m_Father: {fileID: 1984073382}
- m_RootOrder: 9
+ m_RootOrder: 10
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 0}
@@ -685085,6 +740935,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &1064300881
MonoBehaviour:
@@ -709363,6 +765249,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1116779638}
+--- !u!1 &1117000737
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1117000738}
+ - component: {fileID: 1117000740}
+ - component: {fileID: 1117000739}
+ m_Layer: 0
+ m_Name: axis_angle10
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1117000738
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1117000737}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 10
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 89, y: 108.17176}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1117000739
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1117000737}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 300
+--- !u!222 &1117000740
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1117000737}
--- !u!1 &1117056007
GameObject:
m_ObjectHideFlags: 0
@@ -710990,7 +766950,7 @@ RectTransform:
m_GameObject: {fileID: 1121820624}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children: []
m_Father: {fileID: 472702066}
m_RootOrder: 1
@@ -712825,7 +768785,7 @@ RectTransform:
m_GameObject: {fileID: 1126919173}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 432655419}
m_Father: {fileID: 1693045525}
@@ -732529,7 +788489,7 @@ MonoBehaviour:
m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
- m_Content: {fileID: 945062866}
+ m_Content: {fileID: 1598106459}
m_Horizontal: 0
m_Vertical: 1
m_MovementType: 1
@@ -747974,6 +803934,44 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1188347421}
+--- !u!1 &1188930631
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1188930632}
+ m_Layer: 0
+ m_Name: axis_radius
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1188930632
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1188930631}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1817866392}
+ - {fileID: 195753427}
+ - {fileID: 556977378}
+ - {fileID: 1791499456}
+ - {fileID: 323918644}
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &1189063381
GameObject:
m_ObjectHideFlags: 0
@@ -756355,7 +812353,7 @@ MonoBehaviour:
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
- m_Text: "\u9996\u9875"
+ m_Text: "\u6781\u5750\u6807 PolarChart"
--- !u!222 &1214602855
CanvasRenderer:
m_ObjectHideFlags: 0
@@ -759159,6 +815157,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1222437694}
+--- !u!1 &1222459122
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1222459123}
+ - component: {fileID: 1222459125}
+ - component: {fileID: 1222459124}
+ m_Layer: 0
+ m_Name: axis_angle7
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1222459123
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1222459122}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -89, y: -148.17175}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1222459124
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1222459122}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 210
+--- !u!222 &1222459125
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1222459122}
--- !u!1 &1222484812
GameObject:
m_ObjectHideFlags: 1
@@ -767065,6 +823137,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1244617768
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1244617769}
+ - component: {fileID: 1244617771}
+ - component: {fileID: 1244617770}
+ m_Layer: 0
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1244617769
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1244617768}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1581221350}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 1, y: 1}
+--- !u!114 &1244617770
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1244617768}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Text
+--- !u!222 &1244617771
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1244617768}
--- !u!1 &1244671497
GameObject:
m_ObjectHideFlags: 0
@@ -792115,7 +848261,7 @@ RectTransform:
m_GameObject: {fileID: 1305513876}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1671814948}
- {fileID: 2072657690}
@@ -811443,6 +867589,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1348605593}
+--- !u!1 &1349174797
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1349174798}
+ - component: {fileID: 1349174800}
+ - component: {fileID: 1349174799}
+ m_Layer: 0
+ m_Name: axis_angle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1349174798
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1349174797}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 158, y: -20}
+ m_SizeDelta: {x: 20, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1349174799
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1349174797}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 90
+--- !u!222 &1349174800
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1349174797}
--- !u!1 &1349401883
GameObject:
m_ObjectHideFlags: 0
@@ -988928,6 +1045148,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1416555314}
+--- !u!1 &1416555761
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1416555762}
+ - component: {fileID: 1416555764}
+ - component: {fileID: 1416555763}
+ m_Layer: 0
+ m_Name: axis_radius1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1416555762
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1416555761}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 736610679}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 35, y: 3}
+ m_SizeDelta: {x: 35.333332, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1416555763
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1416555761}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 1.25
+--- !u!222 &1416555764
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1416555761}
--- !u!1 &1416674633
GameObject:
m_ObjectHideFlags: 0
@@ -1002108,6 +1058402,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1444471489}
+--- !u!1 &1444570029
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1444570030}
+ - component: {fileID: 1444570032}
+ - component: {fileID: 1444570031}
+ m_Layer: 0
+ m_Name: axis_angle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1444570030
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1444570029}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 84, y: -148.17175}
+ m_SizeDelta: {x: 20, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1444570031
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1444570029}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 60
+--- !u!222 &1444570032
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1444570029}
--- !u!1 &1445026659
GameObject:
m_ObjectHideFlags: 0
@@ -1005366,7 +1061734,7 @@ RectTransform:
m_GameObject: {fileID: 1452596008}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1770929440}
- {fileID: 813639663}
@@ -1034043,6 +1090411,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1466441717
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1466441718}
+ - component: {fileID: 1466441720}
+ - component: {fileID: 1466441719}
+ m_Layer: 0
+ m_Name: axis_angle5
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1466441718
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1466441717}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 89, y: -148.17175}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1466441719
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1466441717}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 150
+--- !u!222 &1466441720
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1466441717}
--- !u!1 &1466554791
GameObject:
m_ObjectHideFlags: 0
@@ -1036338,6 +1092780,80 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: -150}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1473495962
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1473495963}
+ - component: {fileID: 1473495965}
+ - component: {fileID: 1473495964}
+ m_Layer: 0
+ m_Name: axis_angle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1473495963
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1473495962}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 138.17175, y: -94}
+ m_SizeDelta: {x: 20, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1473495964
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1473495962}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 30
+--- !u!222 &1473495965
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1473495962}
--- !u!1 &1473498068
GameObject:
m_ObjectHideFlags: 0
@@ -1093608,6 +1150124,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1564555195}
+--- !u!1 &1564607018
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1564607019}
+ - component: {fileID: 1564607021}
+ - component: {fileID: 1564607020}
+ m_Layer: 0
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1564607019
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1564607018}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 185592100}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 1, y: 1}
+--- !u!114 &1564607020
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1564607018}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Text
+--- !u!222 &1564607021
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1564607018}
--- !u!1 &1564678441
GameObject:
m_ObjectHideFlags: 0
@@ -1096997,6 +1153587,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1573458819
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1573458820}
+ - component: {fileID: 1573458822}
+ - component: {fileID: 1573458821}
+ m_Layer: 0
+ m_Name: axis_radius3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1573458820
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1573458819}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 736610679}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 105, y: 3}
+ m_SizeDelta: {x: 35.333332, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1573458821
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1573458819}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 3.75
+--- !u!222 &1573458822
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1573458819}
--- !u!1 &1573517171
GameObject:
m_ObjectHideFlags: 0
@@ -1101482,6 +1158146,75 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 389, y: 300}
m_Pivot: {x: 0, y: 1}
+--- !u!1 &1581221349
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1581221350}
+ - component: {fileID: 1581221352}
+ - component: {fileID: 1581221351}
+ m_Layer: 0
+ m_Name: axis_angle_label
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1581221350
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1581221349}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 1244617769}
+ m_Father: {fileID: 1028307699}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 400}
+ m_SizeDelta: {x: 100, y: 50}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &1581221351
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1581221349}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &1581221352
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1581221349}
--- !u!1 &1581394901
GameObject:
m_ObjectHideFlags: 0
@@ -1102532,7 +1159265,7 @@ RectTransform:
m_GameObject: {fileID: 1584045619}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 67206821}
- {fileID: 977072908}
@@ -1108726,6 +1165459,65 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1598029837}
+--- !u!1 &1598106458
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1598106459}
+ - component: {fileID: 1598106460}
+ m_Layer: 5
+ m_Name: polar_chart
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1598106459
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1598106458}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.99996465, y: 0.99996465, z: 0.99996465}
+ m_Children:
+ - {fileID: 775491347}
+ - {fileID: 19051743}
+ m_Father: {fileID: 1621547891}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0.0000076293945, y: -0.000022888184}
+ m_SizeDelta: {x: 1180, y: 900}
+ m_Pivot: {x: 0, y: 1}
+--- !u!114 &1598106460
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1598106458}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -2095666955, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Padding:
+ m_Left: 2
+ m_Right: 2
+ m_Top: 2
+ m_Bottom: 2
+ m_ChildAlignment: 0
+ m_StartCorner: 0
+ m_StartAxis: 0
+ m_CellSize: {x: 582.97, y: 400}
+ m_Spacing: {x: 4, y: 4}
+ m_Constraint: 0
+ m_ConstraintCount: 2
--- !u!1 &1598288553
GameObject:
m_ObjectHideFlags: 0
@@ -1116175,6 +1172967,7 @@ RectTransform:
- {fileID: 1229419434}
- {fileID: 1699689521}
- {fileID: 1458796671}
+ - {fileID: 1598106459}
- {fileID: 1841306101}
m_Father: {fileID: 1157708624}
m_RootOrder: 0
@@ -1133949,6 +1190742,80 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: 155}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1661595147
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1661595148}
+ - component: {fileID: 1661595150}
+ - component: {fileID: 1661595149}
+ m_Layer: 0
+ m_Name: Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1661595148
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1661595147}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 55778848}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 1, y: 1}
+--- !u!114 &1661595149
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1661595147}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Text
+--- !u!222 &1661595150
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1661595147}
--- !u!1 &1661804244
GameObject:
m_ObjectHideFlags: 1
@@ -1135716,7 +1192583,7 @@ RectTransform:
m_GameObject: {fileID: 1666099891}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 2115140964}
- {fileID: 806627518}
@@ -1138537,6 +1195404,42 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: 169}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1674437600
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1674437601}
+ m_Layer: 0
+ m_Name: tooltip
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!224 &1674437601
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1674437600}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 785639235}
+ - {fileID: 185592100}
+ - {fileID: 996531148}
+ m_Father: {fileID: 19051743}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &1674498689
GameObject:
m_ObjectHideFlags: 0
@@ -1138971,6 +1195874,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1675222883}
+--- !u!1 &1675379334
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1675379335}
+ - component: {fileID: 1675379337}
+ - component: {fileID: 1675379336}
+ m_Layer: 0
+ m_Name: axis_angle5
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1675379335
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1675379334}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -143.17177, y: -94}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1675379336
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1675379334}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 150
+--- !u!222 &1675379337
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1675379334}
--- !u!1 &1675652049
GameObject:
m_ObjectHideFlags: 0
@@ -1142919,6 +1199896,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1685022007}
+--- !u!1 &1685087858
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1685087859}
+ - component: {fileID: 1685087861}
+ - component: {fileID: 1685087860}
+ m_Layer: 0
+ m_Name: title
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1685087859
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1685087858}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 525901933}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 1}
+ m_AnchorMax: {x: 0.5, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 16}
+ m_Pivot: {x: 0.5, y: 1}
+--- !u!114 &1685087860
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1685087858}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 16
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 1
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: PolarChart
+--- !u!222 &1685087861
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1685087858}
--- !u!1 &1685477124
GameObject:
m_ObjectHideFlags: 0
@@ -1173588,7 +1230639,7 @@ MonoBehaviour:
m_ChartModule:
- m_Name: "\u9996\u9875"
m_Title: "\u9996\u9875"
- m_Selected: 1
+ m_Selected: 0
m_Panel: {fileID: 945062865}
- m_Name: "\u6298\u7EBF\u56FE"
m_Title: "\u6298\u7EBF\u56FE LineChart"
@@ -1173622,6 +1230673,10 @@ MonoBehaviour:
m_Title: "\u73AF\u5F62\u56FE RingChart"
m_Selected: 0
m_Panel: {fileID: 1458796670}
+ - m_Name: "\u6781\u5750\u6807"
+ m_Title: "\u6781\u5750\u6807 PolarChart"
+ m_Selected: 1
+ m_Panel: {fileID: 1598106458}
- m_Name: "\u5176\u4ED6"
m_Title: "\u5176\u4ED6"
m_Selected: 0
@@ -1176580,7 +1233635,7 @@ RectTransform:
m_GameObject: {fileID: 1760191339}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 628878369}
- {fileID: 262367291}
@@ -1182927,7 +1239982,7 @@ RectTransform:
m_GameObject: {fileID: 1776258788}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1131127490}
m_Father: {fileID: 1000969945}
@@ -1183731,7 +1240786,7 @@ RectTransform:
m_GameObject: {fileID: 1777580873}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1634917141}
- {fileID: 703079179}
@@ -1188966,6 +1246021,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1791450979}
+--- !u!1 &1791499455
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1791499456}
+ - component: {fileID: 1791499458}
+ - component: {fileID: 1791499457}
+ m_Layer: 0
+ m_Name: axis_radius3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1791499456
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1791499455}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1188930632}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -30.666656, y: 85}
+ m_SizeDelta: {x: 35.333332, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1791499457
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1791499455}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0.75
+--- !u!222 &1791499458
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1791499455}
--- !u!1 &1791647564
GameObject:
m_ObjectHideFlags: 0
@@ -1200944,6 +1258073,80 @@ RectTransform:
m_AnchoredPosition: {x: -292, y: 155}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1817866391
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1817866392}
+ - component: {fileID: 1817866394}
+ - component: {fileID: 1817866393}
+ m_Layer: 0
+ m_Name: axis_radius0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1817866392
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1817866391}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1188930632}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -13, y: -30}
+ m_SizeDelta: {x: 10, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1817866393
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1817866391}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0
+--- !u!222 &1817866394
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1817866391}
--- !u!1 &1817958408
GameObject:
m_ObjectHideFlags: 1
@@ -1212083,7 +1269286,7 @@ RectTransform:
- {fileID: 1150011278}
- {fileID: 1368920484}
m_Father: {fileID: 1621547891}
- m_RootOrder: 9
+ m_RootOrder: 10
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
@@ -1234732,6 +1291935,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &1888110917
MonoBehaviour:
@@ -1234875,6 +1292114,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1888447904}
+--- !u!1 &1888822384
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1888822385}
+ - component: {fileID: 1888822387}
+ - component: {fileID: 1888822386}
+ m_Layer: 0
+ m_Name: axis_angle6
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1888822385
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1888822384}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -163, y: -20}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1888822386
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1888822384}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 180
+--- !u!222 &1888822387
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1888822384}
--- !u!1 &1889379439
GameObject:
m_ObjectHideFlags: 0
@@ -1238936,6 +1296249,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1899939218}
+--- !u!1 &1899969977
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1899969978}
+ - component: {fileID: 1899969980}
+ - component: {fileID: 1899969979}
+ m_Layer: 0
+ m_Name: title_0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1899969978
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1899969977}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 770130474}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 50, y: 12}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1899969979
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1899969977}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text:
+--- !u!222 &1899969980
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1899969977}
--- !u!1 &1899973386
GameObject:
m_ObjectHideFlags: 0
@@ -1239970,6 +1297357,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1902180650}
+--- !u!1 &1902206077
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1902206078}
+ - component: {fileID: 1902206080}
+ - component: {fileID: 1902206079}
+ m_Layer: 0
+ m_Name: axis_angle4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1902206078
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1902206077}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 143.17175, y: -94}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1902206079
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1902206077}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 120
+--- !u!222 &1902206080
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1902206077}
--- !u!1 &1902257592
GameObject:
m_ObjectHideFlags: 0
@@ -1242691,7 +1300152,7 @@ RectTransform:
m_GameObject: {fileID: 1910345651}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 1932517357}
- {fileID: 614557501}
@@ -1259365,6 +1316826,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &1942753990
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1942753991}
+ - component: {fileID: 1942753993}
+ - component: {fileID: 1942753992}
+ m_Layer: 0
+ m_Name: axis_angle9
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1942753991
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1942753990}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0.000030517578, y: 138}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1942753992
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1942753990}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 270
+--- !u!222 &1942753993
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1942753990}
--- !u!1 &1942913453
GameObject:
m_ObjectHideFlags: 0
@@ -1263729,7 +1321264,7 @@ RectTransform:
m_GameObject: {fileID: 1956011522}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 569418676}
- {fileID: 1422194551}
@@ -1273650,6 +1331185,7 @@ RectTransform:
- {fileID: 453606762}
- {fileID: 728093144}
- {fileID: 449913326}
+ - {fileID: 986402340}
- {fileID: 1064300879}
m_Father: {fileID: 834546373}
m_RootOrder: 0
@@ -1295288,6 +1352824,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 2035824908}
+--- !u!1 &2036072067
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2036072068}
+ - component: {fileID: 2036072070}
+ - component: {fileID: 2036072069}
+ m_Layer: 0
+ m_Name: axis_angle8
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &2036072068
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2036072067}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 8
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -143.17177, y: -94}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &2036072069
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2036072067}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 240
+--- !u!222 &2036072070
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2036072067}
--- !u!1 &2036280151
GameObject:
m_ObjectHideFlags: 0
@@ -1300581,6 +1358191,80 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &2048271611
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2048271612}
+ - component: {fileID: 2048271614}
+ - component: {fileID: 2048271613}
+ m_Layer: 0
+ m_Name: axis_angle0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &2048271612
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2048271611}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 138}
+ m_SizeDelta: {x: 10, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &2048271613
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2048271611}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 0
+--- !u!222 &2048271614
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2048271611}
--- !u!1 &2048683132
GameObject:
m_ObjectHideFlags: 0
@@ -1316772,6 +1374456,80 @@ RectTransform:
m_AnchoredPosition: {x: -32.75, y: -14.714294}
m_SizeDelta: {x: 50, y: 16}
m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1 &2078337001
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2078337002}
+ - component: {fileID: 2078337004}
+ - component: {fileID: 2078337003}
+ m_Layer: 0
+ m_Name: axis_angle10
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &2078337002
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2078337001}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2093670171}
+ m_RootOrder: 10
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -143.17177, y: 53.999985}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &2078337003
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2078337001}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 300
+--- !u!222 &2078337004
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2078337001}
--- !u!1 &2078641879
GameObject:
m_ObjectHideFlags: 1
@@ -1323999,6 +1381757,51 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 2093104860}
+--- !u!1 &2093670170
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2093670171}
+ m_Layer: 0
+ m_Name: axis_angle
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &2093670171
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2093670170}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2048271612}
+ - {fileID: 24052256}
+ - {fileID: 384774273}
+ - {fileID: 1349174798}
+ - {fileID: 1902206078}
+ - {fileID: 1466441718}
+ - {fileID: 880695216}
+ - {fileID: 1222459123}
+ - {fileID: 2036072068}
+ - {fileID: 288250751}
+ - {fileID: 2078337002}
+ - {fileID: 645064867}
+ m_Father: {fileID: 775491347}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 1}
+ m_AnchorMax: {x: 0, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 582.97, y: 400}
+ m_Pivot: {x: 0, y: 1}
--- !u!1 &2093762088
GameObject:
m_ObjectHideFlags: 0
@@ -1337072,6 +1394875,42 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &2129811974
MonoBehaviour:
@@ -1340811,6 +1398650,80 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 2131857860}
+--- !u!1 &2131897788
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2131897789}
+ - component: {fileID: 2131897791}
+ - component: {fileID: 2131897790}
+ m_Layer: 0
+ m_Name: axis_angle8
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &2131897789
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2131897788}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 290308877}
+ m_RootOrder: 8
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: -89.00003, y: 108.171745}
+ m_SizeDelta: {x: 30, y: 20}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &2131897790
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2131897788}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1}
+ m_RaycastTarget: 0
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 10
+ m_MaxSize: 40
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: 240
+--- !u!222 &2131897791
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2131897788}
--- !u!1 &2131986297
GameObject:
m_ObjectHideFlags: 0