mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-17 14:00:12 +00:00
增加ScatterChart同时对Scatter和Line的支持,实现折线图和散点图的组合图
This commit is contained in:
@@ -8,9 +8,9 @@ namespace XCharts
|
||||
public partial class CoordinateChart
|
||||
{
|
||||
protected float m_BarLastOffset = 0;
|
||||
|
||||
protected void DrawYBarSerie(VertexHelper vh, int serieIndex, int stackCount,
|
||||
Serie serie, int colorIndex, ref List<float> seriesHig)
|
||||
|
||||
protected void DrawYBarSerie(VertexHelper vh, int serieIndex, Serie serie, int colorIndex,
|
||||
ref List<float> seriesHig)
|
||||
{
|
||||
if (!IsActive(serie.name)) return;
|
||||
var xAxis = m_XAxises[serie.axisIndex];
|
||||
@@ -95,8 +95,8 @@ namespace XCharts
|
||||
return currHig;
|
||||
}
|
||||
|
||||
protected void DrawXBarSerie(VertexHelper vh, int serieIndex, int stackCount,
|
||||
Serie serie, int colorIndex, ref List<float> seriesHig)
|
||||
protected void DrawXBarSerie(VertexHelper vh, int serieIndex, Serie serie, int colorIndex,
|
||||
ref List<float> seriesHig)
|
||||
{
|
||||
if (!IsActive(serie.name)) return;
|
||||
var showData = serie.GetDataList(m_DataZoom);
|
||||
|
||||
Reference in New Issue
Block a user