mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-31 13:58:48 +00:00
修复settings的lineSmoothness用代码设置无效的问题
This commit is contained in:
@@ -93,7 +93,7 @@ namespace XCharts.Runtime
|
|||||||
public float lineSmoothness
|
public float lineSmoothness
|
||||||
{
|
{
|
||||||
get { return m_LineSmoothness; }
|
get { return m_LineSmoothness; }
|
||||||
set { if (PropertyUtil.SetStruct(ref m_LineSmoothStyle, value < 0 ? 1f : value)) SetVerticesDirty(); }
|
set { if (PropertyUtil.SetStruct(ref m_LineSmoothness, value < 0 ? 1f : value)) SetVerticesDirty(); }
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The partition distance of a line segment. A line in a normal line chart is made up of many segments,
|
/// The partition distance of a line segment. A line in a normal line chart is made up of many segments,
|
||||||
|
|||||||
Reference in New Issue
Block a user