9 using System.Collections.Generic;
14 [DisallowMultipleComponent]
23 if (chart ==
null)
return;
24 chart.series.SetSerieSymbolSizeCallback(SymbolSize, SymbolSelectedSize);
27 float SymbolSize(List<double> data)
29 return (
float)(Math.Sqrt(data[2]) / 6e2);
32 float SymbolSelectedSize(List<double> data)
34 return (
float)(Math.Sqrt(data[2]) / 5e2);