36 lines
1.4 KiB
C#
36 lines
1.4 KiB
C#
using System;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
[Serializable]
|
|
[SerieHandler(typeof(LineHandler), true)]
|
|
[SerieConvert(typeof(Bar), typeof(Pie))]
|
|
[CoordOptions(typeof(GridCoord), typeof(PolarCoord))]
|
|
[DefaultAnimation(AnimationType.LeftToRight, false)]
|
|
[DefaultTooltip(Tooltip.Type.Line, Tooltip.Trigger.Axis)]
|
|
[SerieDataExtraField("m_State", "m_Ignore")]
|
|
[SerieComponent(typeof(LabelStyle), typeof(EndLabelStyle), typeof(LineArrow), typeof(AreaStyle), typeof(EmphasisStyle), typeof(BlurStyle), typeof(SelectStyle))]
|
|
[SerieDataComponent(typeof(ItemStyle), typeof(LabelStyle), typeof(SerieSymbol), typeof(EmphasisStyle), typeof(BlurStyle), typeof(SelectStyle))]
|
|
public class Line : Serie, INeedSerieContainer
|
|
{
|
|
public int containerIndex { get; internal set; }
|
|
public int containterInstanceId { get; internal set; }
|
|
public static Serie AddDefaultSerie(BaseChart chart, string serieName)
|
|
{
|
|
var serie = chart.AddSerie<Line>(serieName);
|
|
serie.symbol.show = true;
|
|
serie.animation.interaction.radius.value = 1.5f;
|
|
for (int i = 0; i < 5; i++)
|
|
{
|
|
chart.AddData(serie.index, UnityEngine.Random.Range(10, 90));
|
|
}
|
|
return serie;
|
|
}
|
|
|
|
public static Line ConvertSerie(Serie serie)
|
|
{
|
|
var newSerie = serie.Clone<Line>();
|
|
return newSerie;
|
|
}
|
|
}
|
|
} |