Sha256: f6d3c6e9cada83bacd0fa420b4724fe90ae1476ddd3b8976b8004991ed037e7d
Contents?: true
Size: 968 Bytes
Versions: 1
Compression:
Stored size: 968 Bytes
Contents
import { Controller } from "@hotwired/stimulus" import { Chart, registerables } from "https://cdn.skypack.dev/chart.js@4.4.6" Chart.register(...registerables) Chart.defaults.backgroundColor = getCssVariableValue("--color-primary") Chart.defaults.borderColor = getCssVariableValue("--color-border") Chart.defaults.color = getCssVariableValue("--color-text") Chart.defaults.font.family = getCssVariableValue("--font-system-ui") Chart.defaults.font.size = 12 function getCssVariableValue(variableName) { return getComputedStyle(document.documentElement).getPropertyValue(variableName).trim() } export default class extends Controller { static values = { type: { type: String, default: "line" }, data: Object, options: Object } connect() { this.chart = new Chart(this.element, this.#settings) } disconnect() { this.chart.destroy() } get #settings() { return { type: this.typeValue, data: this.dataValue, options: this.optionsValue } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
css-zero-0.0.70 | lib/generators/css_zero/add/templates/app/javascript/controllers/chart_controller.js |