mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-29 20:58:47 +00:00
修复Tooltip的titleFormater设置{b}可能不生效的问题
This commit is contained in:
@@ -99,7 +99,7 @@ namespace XCharts.Runtime
|
||||
var args1Str = args[1].ToString();
|
||||
if (s_RegexN.IsMatch(args1Str)) bIndex = int.Parse(args1Str);
|
||||
}
|
||||
var needCategory = (p != 'e' && p != 'E') && (serie is Line || serie is Bar);
|
||||
var needCategory = (p != 'e' && p != 'E') && serie.defaultColorBy != SerieColorBy.Data;
|
||||
if (needCategory)
|
||||
{
|
||||
var category = chart.GetTooltipCategory(dataIndex, serie);
|
||||
|
||||
Reference in New Issue
Block a user