Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道如何更改 reseZoomButton 文本(原始“重置缩放”)吗?似乎必须为此使用 Highcharts 对象。如何在 Vaadin Charts 中访问它?谢谢你。
在创建 Chart 对象之前必须执行以下 js:
import Highcharts from 'highcharts/js/es-modules/parts/Globals.js'; window.change = function () { Highcharts.setOptions({ lang: { resetZoom: 'Сброс', resetZoomTitle: 'Установить масштаб 1:1', } });
}
重要的是 Highchart 导入必须来自脚本,如代码所示。