fixed axis label custom color

This commit is contained in:
monitor1394
2022-03-30 13:15:24 +08:00
parent 6c0dcbbcbb
commit 426d437e6d

View File

@@ -413,7 +413,7 @@ namespace XCharts.Runtime
label.UpdateIcon(iconStyle, axis.GetIcon(index)); label.UpdateIcon(iconStyle, axis.GetIcon(index));
label.label.SetActive(labelShow); label.label.SetActive(labelShow);
label.SetText(content); label.SetText(content);
label.color = textStyle.color; label.color = textStyle.backgroundColor;
return label; return label;
} }
@@ -428,7 +428,7 @@ namespace XCharts.Runtime
label.SetAutoSize(true); label.SetAutoSize(true);
label.label.SetActive(true); label.label.SetActive(true);
label.SetText(content); label.SetText(content);
label.color = textStyle.color; label.color = textStyle.backgroundColor;
return label; return label;
} }
@@ -473,7 +473,7 @@ namespace XCharts.Runtime
label.label = AddTextObject("Text", label.gameObject.transform, anchorMin, anchorMax, pivot, sizeDelta, textStyle, theme.tooltip, label.label); label.label = AddTextObject("Text", label.gameObject.transform, anchorMin, anchorMax, pivot, sizeDelta, textStyle, theme.tooltip, label.label);
label.SetAutoSize(true); label.SetAutoSize(true);
label.SetText(""); label.SetText("");
label.color = textStyle.color; label.color = textStyle.backgroundColor;
return label; return label;
} }