UNPKG

@antv/attr

Version:

The Attribute module for G2, F2.

11 lines (10 loc) 283 B
import { AttributeCfg } from '../interface'; import Attribute from './base'; export default class Color extends Attribute { gradient: (percent: number) => string; constructor(cfg: AttributeCfg); /** * @override */ getLinearValue(percent: number): string; }