Skip to main content
Module

x/billboardjs/Chart/api/color.ts

πŸ“Š Re-usable, easy interface JavaScript chart library based on D3.js
Go to Latest
File
/** * Copyright (c) 2017 ~ present NAVER Corp. * billboard.js project is licensed under the MIT license */export default { /** * Get the color * @function color * @instance * @memberof Chart * @param {string} id id to get the color * @returns {string} * @example * chart.color("data1"); */ color(id: string): string { return this.internal.color(id); // more patterns }};