gpt4 book ai didi

ios - 如何在 HighCharts 中将动态文本内容设置为 yAxis stackLabels?

转载 作者:搜寻专家 更新时间:2023-10-30 20:23:54 26 4
gpt4 key购买 nike

我想设置 yAxis stackLabels 内容动态显示如下链接。 好、优秀、差、一般、低于平均

下面的链接代码是JavaScript,我如何在Objective C中使用它?

链接:Demo

yAxis.stackLabel 没有链接演示中使用的 qTotals 属性。

我想要类似下图或显示在上面给定链接中的内容。

enter image description here

任何帮助将不胜感激。提前致谢。

最佳答案

这是解决方案。

如果我们想根据 yAxis dataLabels total 来设置 Text。

[HIStackLabels alloc]init];
yaxis.stackLabels.enabled = [[NSNumber alloc] initWithBool:true];
yaxis.stackLabels.formatter = [[HIFunction alloc] initWithFunction:@"function() { if(this.total > 9) return 'Good'; if(this.y == 30) return 'Average';}"];

如果我们要设置基于特定列的文本。

column1.dataLabels = [[HIDataLabels alloc]init];
column1.dataLabels.enabled = [NSNumber numberWithInteger:1];
column1.dataLabels.formatter = [[HIFunction alloc] initWithFunction:@"function() { if(this.y == 60) return 'Poor'; if(this.y == 30) return 'Average';}"];

关于ios - 如何在 HighCharts 中将动态文本内容设置为 yAxis stackLabels?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49463011/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com