mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-18 14:30:10 +00:00
优化Tooltip的LineStyle支持设置Shadow时的颜色
This commit is contained in:
@@ -87,7 +87,7 @@ namespace XCharts.Runtime
|
||||
else return tooltip.numericFormatter;
|
||||
}
|
||||
|
||||
public static Color32 GetLineColor(Tooltip tooltip, ThemeStyle theme)
|
||||
public static Color32 GetLineColor(Tooltip tooltip, Color32 defaultColor)
|
||||
{
|
||||
var lineStyle = tooltip.lineStyle;
|
||||
if (!ChartHelper.IsClearColor(lineStyle.color))
|
||||
@@ -96,7 +96,7 @@ namespace XCharts.Runtime
|
||||
}
|
||||
else
|
||||
{
|
||||
var color = theme.tooltip.lineColor;
|
||||
var color = defaultColor;
|
||||
ChartHelper.SetColorOpacity(ref color, lineStyle.opacity);
|
||||
return color;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user