如何更改 Vue.js 项目中所有 ApexCharts 的字体系列?

How to change font family of all ApexCharts in Vue.js project?

我在我的 vuejs 项目中使用 vue-apexcharts。我有大约 15 页在使用图表,我想在所有地方更改字体系列。一般如何实现这一点?有什么通用的方法可以一起更改字体吗?

https://apexcharts.com/docs/options/chart/fontfamily/

这是写如何以特定方式更改它的示例。

您可以 set global options 在您导入并注册后 vue-apexcharts

import VueApexCharts from "vue-apexcharts";

Vue.use(VueApexCharts);
window.Apex.chart = { fontFamily: "MuseoModerno, Arial, sans-serif" };

这将应用于所有图表。

当然,请记住,您还需要确保该字体在您的 Vue 项目中全局可用,例如