增加LineChart和BarChart同时对Line、Bar类型Serie的支持,实现折线图和柱状图组合

This commit is contained in:
monitor1394
2019-09-28 16:35:55 +08:00
parent afe9e730fc
commit e901d9f456
7 changed files with 1450 additions and 1380 deletions

View File

@@ -504,7 +504,7 @@ namespace XCharts
}
public static void GetBezierList(ref List<Vector3> posList, VertexHelper vh, Vector3 sp, Vector3 ep,
Vector3 lsp, Vector3 nep, float lineWidth, bool fine, float k = 2.0f)
Vector3 lsp, Vector3 nep, bool fine, float k = 2.0f)
{
float dist = Mathf.Abs(sp.x - ep.x);
Vector3 cp1, cp2;