mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-23 09:20:08 +00:00
3.0 - scatter chart and candlestick chart
This commit is contained in:
@@ -167,6 +167,12 @@ namespace XCharts.Editor
|
||||
{
|
||||
m_Series.Add(prop.GetArrayElementAtIndex(i));
|
||||
}
|
||||
m_Series.Sort(delegate (SerializedProperty a, SerializedProperty b)
|
||||
{
|
||||
var index1 = a.FindPropertyRelative("m_Index").intValue;
|
||||
var index2 = b.FindPropertyRelative("m_Index").intValue;
|
||||
return index1.CompareTo(index2);
|
||||
});
|
||||
}
|
||||
|
||||
private void AddComponent()
|
||||
|
||||
Reference in New Issue
Block a user