mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-17 22:10:11 +00:00
优化堆叠平滑曲线图的绘制
This commit is contained in:
@@ -93,12 +93,12 @@ namespace XCharts
|
||||
switch (serie.type)
|
||||
{
|
||||
case SerieType.Line:
|
||||
if (yCategory) DrawYLineSerie(vh, j, serie, colorIndex, ref m_SeriesCurrHig);
|
||||
else DrawXLineSerie(vh, j, serie, colorIndex, ref m_SeriesCurrHig);
|
||||
if (yCategory) DrawYLineSerie(vh,serie, colorIndex, ref m_SeriesCurrHig);
|
||||
else DrawXLineSerie(vh,serie, colorIndex, ref m_SeriesCurrHig);
|
||||
break;
|
||||
case SerieType.Bar:
|
||||
if (yCategory) DrawYBarSerie(vh, j, serie, colorIndex, ref m_SeriesCurrHig);
|
||||
else DrawXBarSerie(vh, j, serie, colorIndex, ref m_SeriesCurrHig);
|
||||
if (yCategory) DrawYBarSerie(vh, serie, colorIndex, ref m_SeriesCurrHig);
|
||||
else DrawXBarSerie(vh, serie, colorIndex, ref m_SeriesCurrHig);
|
||||
break;
|
||||
case SerieType.Scatter:
|
||||
case SerieType.EffectScatter:
|
||||
|
||||
Reference in New Issue
Block a user