Sha256: 0cc6727c8a9ebf2d66b2e20c1d3d75e0a6d9767d32867f950585045e23f75a97
Contents?: true
Size: 961 Bytes
Versions: 345
Compression:
Stored size: 961 Bytes
Contents
import { commonSettings } from '../pb_dashboard/commonSettings.js' import typography from '../tokens/exports/_typography.module.scss' const markerStyles = (highchart) => { highchart.plotOptions.line.marker.enabled = true highchart.plotOptions.series.marker.enabled = true highchart.plotOptions.series.marker.fillColor = 'white' highchart.plotOptions.series.marker.lineWidth = 2 } const fixTooltipStyles = () => { document.getElementById('main-view').setAttribute('style', 'position: static !important') } const styleDataLabels = (highchart) => { const series = highchart.plotOptions.series series.dataLabels.style.fontFamily = typography.font_family_base series.dataLabels.style.fontSize = typography.text_small series.dataLabels.style.fontWeight = typography.bold } const pbLineGraph = (highchart) => { commonSettings(highchart) styleDataLabels(highchart) markerStyles(highchart) fixTooltipStyles() } export default pbLineGraph
Version data entries
345 entries across 345 versions & 1 rubygems