0

我正在将一些图表从 anychart 6 (xml) 迁移到 anychart 8 (javascript)。我似乎找不到如何在 anychart 8 中添加字幕和页脚?这些在anychart 6中可用。

4

1 回答 1

0

这些功能在最新版本中也可用。请查看当前标题: https ://docs.anychart.com/Common_Settings/Title 您可以使用 HTML 标签,例如

title.useHtml(true);
title.text(
  "Sales Performance"+
  "<br><a style=\"color:#0000FF; font-size: 10px;\">"+
  "according to annual report</a>"
);

它将创建字幕: https ://playground.anychart.com/docs/8.0.1/samples/CS_Titles_06-plain 另外,这个例子(它与统计数据有关,但显示了这个想法):https:// Playground.anychart.com/docs/8.0.1/samples/CS_Statistics_05-plain

至于页脚,可以用图表标签来完成: https ://docs.anychart.com/Common_Settings/Chart_Labels 可以定义标签位置、文本内容等设置。我做了一个简单的例子来说明这一点:https ://jsfiddle.net/sye89q5z/

于 2017-10-23T08:52:04.327 回答