UNPKG

apexcharts

Version:

A JavaScript Chart Library

40 lines (34 loc) 1.01 kB
// @ts-check import Graphics from '../../../modules/Graphics' export default class CircularChartsHelpers { /** * @param {import('../../../types/internal').ChartStateW} w */ constructor(w) { this.w = w } /** * @param {number} x * @param {number} y * @param {number} i * @param {string | number} text */ drawYAxisTexts(x, y, i, text) { const w = this.w const yaxisConfig = w.config.yaxis[0] const formatter = w.formatters.yLabelFormatters[0] const graphics = new Graphics(this.w) const yaxisLabel = graphics.drawText({ x: x + yaxisConfig.labels.offsetX, y: y + yaxisConfig.labels.offsetY, text: formatter(text, i), textAnchor: 'middle', fontSize: yaxisConfig.labels.style.fontSize, fontFamily: yaxisConfig.labels.style.fontFamily, foreColor: Array.isArray(yaxisConfig.labels.style.colors) ? yaxisConfig.labels.style.colors[i] : yaxisConfig.labels.style.colors, }) return yaxisLabel } }