Yii2 是否可以默认切换 onmotion/yii2-widget-apexcharts 系列?

发布于 2025-01-10 00:56:52 字数 181 浏览 0 评论 0原文

我正在使用 onmotion/yii2-widget-apexcharts。在我的图表中,我有大约 20 个数据集的系列,但我不想在页面加载后显示所有数据集(就像它被关闭一样),相反,如果图表可以仅显示选定的系列名称,并带有选项切换隐藏的系列名称,那就太好了。主要需求是在页面加载时关闭所有系列,完美的需求是关闭选定的系列。谁能帮我解决这个问题吗?

I am using onmotion/yii2-widget-apexcharts. In my chart I have series with ~ 20 data sets but I don't want show them all after page loads (like it's toggled off), instead it would be nice if chart could show only selected series names with option toggle those who are hidden. Primary need is to toggle all series off when page loads, perfect need is toggle off selected series. Can anyone help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千寻… 2025-01-17 00:56:52

您可以通过将 JS 代码添加到小部件初始化来禁用特定的 series_nameid 是生成的,因此可以帮助显式指定它。

<?= ApexchartsWidget::widget([
    ...merge your existing code...,
    'chartOptions' => [
        'chart' => [
            'id' => 'your_chart_id',
        ],
    ],
    'js' => new JsExpression("ApexCharts.exec('your_chart_id', 'hideSeries', 'series_name')"),
]); ?>

You can disable specific series_name by adding JS code to the widget initialization. id is generated, so it can help to specify it explicitly.

<?= ApexchartsWidget::widget([
    ...merge your existing code...,
    'chartOptions' => [
        'chart' => [
            'id' => 'your_chart_id',
        ],
    ],
    'js' => new JsExpression("ApexCharts.exec('your_chart_id', 'hideSeries', 'series_name')"),
]); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文