* UILineChart: 默认图线平滑关闭

This commit is contained in:
Sunny 2022-03-18 18:06:44 +08:00
parent 2013d84087
commit 6bc0b66907
5 changed files with 0 additions and 6 deletions

Binary file not shown.

Binary file not shown.

View File

@ -48,7 +48,6 @@ namespace Sunny.UI.Demo
series.Symbol = UILinePointSymbol.Star;
series.SymbolSize = 4;
series.SymbolLineWidth = 2;
series.Smooth = true;
series.ShowLine = !cbPoints.Checked;
option.GreaterWarningArea = new UILineWarningArea(3.5);
@ -107,7 +106,6 @@ namespace Sunny.UI.Demo
option.Title.Text = "SunnyUI";
option.Title.SubText = "LineChart";
var series = option.AddSeries(new UILineSeries("Line1"));
series.Smooth = true;
option.XAxis.AxisLabel.DecimalCount = 1;
option.XAxis.AxisLabel.AutoFormat = false;
@ -210,7 +208,6 @@ namespace Sunny.UI.Demo
series.Symbol = UILinePointSymbol.Star;
series.SymbolSize = 4;
series.SymbolLineWidth = 2;
series.Smooth = true;
option.XAxis.Name = "日期";
option.YAxis.Name = "数值";

View File

@ -45,7 +45,6 @@ namespace Sunny.UI.Demo.Charts
series.SymbolSize = 4;
series.SymbolLineWidth = 2;
series.SymbolColor = Color.Red;
series.Smooth = true;
option.GreaterWarningArea = new UILineWarningArea(3.5);
option.LessWarningArea = new UILineWarningArea(2.2, Color.Gold);

View File

@ -203,8 +203,6 @@ namespace Sunny.UI
series.Add(i, 6 * Math.Cos(i * 5 * Math.PI / 180));
}
series.Smooth = true;
option.XAxis.Name = "数值";
option.YAxis.Name = "数值";