Highcharts是一个使用HTML,SVG和VML的Javascript图表库。该编辑器提供该产品的开源/非营利和商业版本。
我已经在我的项目中安装了highcharts包。现在我尝试查看示例图表,但出现错误。 使用 milosc human\highcharts\Highcharts; 我已经在我的项目中安装了 highcharts 包。现在我尝试查看示例图表,但出现错误。 use miloschuman\highcharts\Highcharts; <?= Highcharts::widget([ 'options' => [ 'title' => ['text' => 'Fruit Consumption'], 'xAxis' => [ 'categories' => ['Apples', 'Bananas', 'Oranges'] ], 'yAxis' => [ 'title' => ['text' => 'Fruit eaten'] ], 'series' => [ ['name' => 'Jane', 'data' => [1, 0, 4]], ['name' => 'John', 'data' => [5, 7, 3]] ] ] ]); ?> 错误 Invalid Argument – yii\base\InvalidArgumentException 要发布的文件或目录不存在:F:\xampp\htdocs\mdc/vendorower/highcharts 更新1 下面是我的堆栈跟踪 更新2 下面是我的composer.json { "name": "yiisoft/yii2-app-advanced", "description": "Yii 2 Advanced Project Template", "keywords": ["yii2", "framework", "advanced", "project template"], "homepage": "http://www.yiiframework.com/", "type": "project", "license": "BSD-3-Clause", "support": { "issues": "https://github.com/yiisoft/yii2/issues?state=open", "forum": "http://www.yiiframework.com/forum/", "wiki": "http://www.yiiframework.com/wiki/", "irc": "irc://irc.freenode.net/yii", "source": "https://github.com/yiisoft/yii2" }, "minimum-stability": "dev", "require": { "php": ">=5.4.0", "yiisoft/yii2": "~2.0.13", "yiisoft/yii2-bootstrap": "~2.0.0", "yiisoft/yii2-swiftmailer": "~2.0.0", "luoxiaojun1992/yii2-tinker": "*", "kartik-v/yii2-grid": "@dev", "kartik-v/yii2-widget-select2": "@dev", "kartik-v/yii2-mpdf": "dev-master", "moonlandsoft/yii2-phpexcel": "*", "nirvana-msu/yii2-showloading": "1.0.*@dev", "kartik-v/yii2-krajee-base": "^2.0", "kartik-v/yii2-widget-spinner": "@dev", "edwinhaq/yii2-simple-loading": "*", "c006/yii2-submit-spinner": "*", "kartik-v/yii2-detail-view": "*", "fedemotta/yii2-cronjob": "*", "kartik-v/yii2-widget-datetimepicker": "*", "kartik-v/yii2-date-range": "dev-master", "phpoffice/phpspreadsheet": "^1.2", "linslin/yii2-curl": "*", "kartik-v/yii2-widget-fileinput": "@dev", "kartik-v/yii2-dialog": "*", "google/apiclient": "^2.0", "delight-im/str": "^2.4", "mongosoft/yii2-soap-client": "dev-master", "kartik-v/yii2-export": "@dev", "ext-json": "*", "miloschuman/yii2-highcharts-widget": "*", "simialbi/yii2-widget-chart": "^1.0@dev", "onmotion/yii2-widget-apexcharts": "dev-master", "2amigos/yii2-chartjs-widget": "~2.0", "kartik-v/yii2-bootstrap4-dropdown": "@dev", "practically/yii2-chartjs": "dev-master", "php-parallel-lint/php-console-color": "dev-master", "nnnick/chartjs": "v2.9.3" }, "require-dev": { "yiisoft/yii2-debug": "~2.0.0", "yiisoft/yii2-gii": "~2.0.0", "yiisoft/yii2-faker": "~2.0.0", "codeception/base": "^2.2.3", "codeception/verify": "~0.3.1" }, "config": { "process-timeout": 1800, "fxp-asset": { "enabled": false } }, "extra": { "asset-installer-paths": { "npm-asset-library": "vendor/npm", "bower-asset-library": "vendor/bower" } }, "scripts": { "post-install-cmd": "php init --env=Development --overwrite=n" }, "autoload": { "psr-4": { "kartik\\spinner\\": "", "nirvana\\showloading\\": "" } }, "repositories": [{ "type": "composer", "url": "https://asset-packagist.org" }] } 更新3 从 highcharts 中删除了 composer.json 包,然后执行 composer update F:\xampp\htdocs\mdc>composer require --prefer-dist miloschuman/yii2-highcharts-widget "*" ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Package operations: 2 installs, 0 updates, 0 removals - Installing bower-asset/highcharts (v7.2.1): Loading from cache - Installing miloschuman/yii2-highcharts-widget (dev-master 260b946): Loading from cache Package codeception/base is abandoned, you should avoid using it. No replacement was suggested. Package jakub-onderka/php-console-color is abandoned, you should avoid using it. Use php-parallel-lint/php-console-color instead. Package jakub-onderka/php-console-highlighter is abandoned, you should avoid using it. Use php-parallel-lint/php-console-highlighter instead. Writing lock file Generating autoload files 14 packages you are using are looking for funding. Use the `composer fund` command to find out more! 出现同样的错误 无效参数 – yii ase\InvalidArgumentException The file or directory to be published does not exist: F:\xampp\htdocs\mdc/vendor\bower/highcharts 更新4 根据@Taron 第一个解决方案,我有backend/config/main.php <?PHP $params = array_merge( require(__DIR__ . '/../../common/config/params.php'), require(__DIR__ . '/../../common/config/params-local.php'), require(__DIR__ . '/params.php'), require(__DIR__ . '/params-local.php') // require(__DIR__ .'/main-local.php') ); return [ 'id' => 'app-backend', 'basePath' => dirname(__DIR__), 'controllerNamespace' => 'backend\controllers', 'bootstrap' => ['log'], 'modules' => [ 'gridview' => [ 'class' => '\kartik\grid\Module' ], 'api' => [ 'class' => 'backend\modules\api\Api', ], ], 'timeZone' => 'Asia/Karachi', 'components' => [ 'request' => [ 'csrfParam' => '_csrf-backend', 'parsers' => [ 'application/json' => 'yii\web\JsonParser', ], 'enableCookieValidation' => false, 'enableCsrfValidation' => false, ], 'user' => [ 'identityClass' => 'common\models\User', 'enableAutoLogin' => true, 'identityCookie' => ['name' => '_identity-backend', 'httpOnly' => true], ], 'session' => [ // this is the name of the session cookie used for login on the backend 'name' => 'advanced-backend', ], 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'warning'], ], ], ], 'errorHandler' => [ 'errorAction' => 'site/error', ], 'urlManager' => [ 'class' => 'yii\web\UrlManager', 'showScriptName' => false, 'enablePrettyUrl' => true, 'rules' => array( '<controller:\w+>/<id:\d+>' => '<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>', '<controller:\w+>/<action:\w+>' => '<controller>/<action>', ), ], ], 'params' => $params, ]; 如何消除这个错误? 任何帮助将不胜感激 看起来像 Bower 资源存储在路径 /vendor/bower-assets 中,但您的脚本尝试从 vendor/bower 加载资源(Bower 资源路径错误)。尝试以下解决方案,我希望其中之一能帮助您。 先解决方案: 只需将以下别名添加到您的配置文件中(config/web.php) 'aliases' => [ '@bower' => '@vendor/bower-asset', '@npm' => '@vendor/npm-asset', ], 解决方案二: 删除 composer.lock 文件 添加 fxp 包:composer globalrequire "fxp/composer-asset-plugin:~1.1.1" 重新安装作曲家:composer --prefer-dist install
我正在尝试深入了解我的热图。向下钻取无法正常工作。 x 轴保持不变。 我的代码: // 响应式标签的子字符串模板助手 Highcharts.模板。
在React js中无法使用Highcharts库获取瀑布图
我需要使用 Highcharts 在我的 React js Web 应用程序中构建瀑布图,我已经安装了 highcharts 和“highcharts-react-official”,但在执行以下导入时: 导入 HighchartsWaterfall
如何在我的 nuxt vue 应用程序中包含此组合图 https://www.highcharts.com/demo/highcharts/combo-dual-axes 图表? 我按照这个 https://www.npmjs.com/package/highcharts-vue d...
有没有办法利用highcharts将树形图的功能和组织结构图的结构结合起来?
我目前正在开发一个项目,涉及实现具有动态功能的组织树功能。我需要将数据集传递给组件来填充和创建子节点
对于 VUE 以上 3.2.x 无法读取 null 属性(读取“nodeName”)
我从 VUE 3.2.47 升级到 3.4.25 并遇到了问题。而且,您只需更改VUE版本即可。我用 "highcharts": "^11.3.0", “highcharts-更多”...
highcharts:当我同时使用两个图表时,禁用柱形图上的悬停
悬停在空白处之前 悬停在空白处后 它由两个同步图表组成。 当我将鼠标移到空白处时,底部图表变得模糊。我不想...
HeatMap yAxis 类别位于最后一个单元格内部,而不是左侧外部。它在代码再现上运行良好,但正如您在图像中看到的那样,yAxis 将进入最终的 c...
Highcharts 面积图,在 X 轴上方/下方使用 2 种填充颜色
在 Highcharts 中,我想用两种颜色填充面积图,正值得到一种颜色,负值得到另一种颜色。 我已经能够使用 LinearGradient 做到这一点,但这必须是 adj...
我想知道是否可以获取一系列堆栈的值以在 Highcharts 的工具提示中使用。 我使用 this.series.stackKey 得到它,如下例所示: $(函数(){ $('#
我有两个团队,team1 和 team2,每个团队都包含以下链接中提到的结构中的绘图数据。 这是我的代码:https://codesandbox.io/p/sandbox/react-counter-function-component-forked-
是否可以使用 Highcharts 创建多个条形图? [已关闭]
是否可以在 Highcharts 中创建这样的图表?它是几个彼此相邻但具有相同 y 轴的条形图。每个条形图代表一组不同的数据,但它们是
我在极坐标图自定义方面遇到问题。我想将数据标签向右移动 45°。 这是小提琴,这是我想要得到的结果: 可以这样做吗...
我在个人项目中使用 Livewire 3.5 和 Highcharts.js。 当我第一次渲染我的组件时,一切正常,我的图表正确显示。 然后我更改我的选择,该组件是
我有一个高图表,我将得到我想要在图表上呈现的 X 天。 如果我有 X 天,我不知道将它们表示为天、周、月或年是否更好。 是...
使用 Ajax 和 CodeIgniter 设置数据系列 Highchart
我想用ajax基于点击按钮重绘和更新数据Highcart。这段代码仍然不起作用。 $('#chartday').on('点击', function() { $('#my_start_date').datepicker(); ...
highcharts-export-server 从网站运行时不生成 svg
我们有一个 php 8.1 的网站。应该使用 exec 运行 highcharts-export-server 来生成 svg 文件,但该文件没有生成: $cmd = '/var/www/mysite/node/node_modules/lib/
Export 能够使用 Highcharts Vue 导出到 csv
我有一个简单的图表,我想要导出数据将数据导出到CSV。但我没有看到这个选项。我的代码有什么问题: main.js: 从“vue”导入 Vue; 从“./...
我正在使用高图表。我正在尝试将其日期更改为波斯语,但由于它使用的是 Date.UTC 我无法更改它! 我看过 http://api.highcharts.com/highstock#lang 但似乎没有