Gathering detailed insights and metrics for @coreui/vue-chartjs
Gathering detailed insights and metrics for @coreui/vue-chartjs
Gathering detailed insights and metrics for @coreui/vue-chartjs
Gathering detailed insights and metrics for @coreui/vue-chartjs
Bootstrap 5 based Vue 3 components and directives. CoreUI for Vue.js replaces and extends the Bootstrap 5 javascript. Components have been built from scratch as true Vue 3 components.
npm install @coreui/vue-chartjs
Typescript
Module System
Node Version
NPM Version
TypeScript (89.79%)
SCSS (4.97%)
Vue (4.17%)
JavaScript (0.85%)
HTML (0.22%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
634 Stars
670 Commits
132 Forks
14 Watchers
5 Branches
9 Contributors
Updated on Jun 20, 2025
Latest Version
3.0.0
Package Id
@coreui/vue-chartjs@3.0.0
Unpacked Size
3.90 MB
Size
707.90 kB
File Count
14
NPM Version
10.2.0
Node Version
21.1.0
Published on
Mar 28, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
1
Explore @coreui/vue-chartjs docs & examples »
Report bug
·
Request feature
·
Blog
1npm install @coreui/vue-chartjs 2 3# or 4 5yarn add @coreui/vue-chartjs
1import { CChart } from '@coreui/vue-chartjs'
or
1import { 2 CChart, 3 CChartBar, 4 CChartHorizontalBar, 5 CChartLine, 6 CChartDoughnut, 7 CChartRadar, 8 CChartPie, 9 CChartPolarArea, 10} from '@coreui/vue-chartjs'
1/** 2 * Enables custom html based tooltips instead of standard tooltips. 3 * 4 * @default true 5 */ 6customTooltips: { 7 type: Boolean, 8 default: true, 9 required: false, 10}, 11/** 12 * The data object that is passed into the Chart.js chart (more info). 13 */ 14data: { 15 type: [Object, Function] as PropType<ChartData | ((canvas: HTMLCanvasElement) => ChartData)>, 16 required: true, 17}, 18/** 19 * Height attribute applied to the rendered canvas. 20 * 21 * @default 150 22 */ 23height: { 24 type: Number, 25 default: 150, 26 required: false, 27}, 28/** 29 * ID attribute applied to the rendered canvas. 30 */ 31id: { 32 type: String, 33 default: undefined, 34 required: false, 35}, 36/** 37 * The options object that is passed into the Chart.js chart. 38 * 39 * {@link https://www.chartjs.org/docs/latest/general/options.html More Info} 40 */ 41options: { 42 type: Object as PropType<ChartOptions>, 43 default: undefined, 44 required: false, 45}, 46/** 47 * The plugins array that is passed into the Chart.js chart (more info) 48 * 49 * {@link https://www.chartjs.org/docs/latest/developers/plugins.html More Info} 50 */ 51plugins: { 52 type: Array as PropType<Plugin[]>, 53 default: undefined, 54}, 55/** 56 * If true, will tear down and redraw chart on all updates. 57 */ 58redraw: Boolean, 59/** 60 * Chart.js chart type. 61 * 62 * @type {'line' | 'bar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble' | 'pie' | 'scatter'} 63 */ 64type: { 65 type: String as PropType<ChartType>, 66 default: 'bar', 67 required: false, 68}, 69/** 70 * Width attribute applied to the rendered canvas. 71 * 72 * @default 300 73 */ 74width: { 75 type: Number, 76 default: 300, 77 required: false, 78}, 79/** 80 * Put the chart into the wrapper div element. 81 * 82 * @default true 83 */ 84wrapper: { 85 type: Boolean, 86 default: true, 87 required: false, 88},
1<CChartLine 2 :wrapper="false" 3 :data="{ 4 labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], 5 datasets: [ 6 { 7 label: 'My First dataset', 8 backgroundColor: 'rgba(220, 220, 220, 0.2)', 9 borderColor: 'rgba(220, 220, 220, 1)', 10 pointBackgroundColor: 'rgba(220, 220, 220, 1)', 11 pointBorderColor: '#fff', 12 data: [40, 20, 12, 39, 10, 40, 39] 13 }, 14 { 15 label: 'My Second dataset', 16 backgroundColor: 'rgba(151, 187, 205, 0.2)', 17 borderColor: 'rgba(151, 187, 205, 1)', 18 pointBackgroundColor: 'rgba(151, 187, 205, 1)', 19 pointBorderColor: '#fff', 20 data: [50, 12, 28, 29, 7, 25, 12] 21 } 22 ] 23 }" 24/>
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 1/22 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More