vega-lite
Version:
Vega-Lite is a concise high-level language for interactive visualization.
22 lines • 1.39 kB
TypeScript
import { EncodeEntry, Gradient, LegendEncode, LegendType, SymbolEncodeEntry } from 'vega';
import { NonPositionScaleChannel } from '../../channel.js';
import { DatumDef, TypedFieldDef, Value } from '../../channeldef.js';
import { Encoding } from '../../encoding.js';
import { UnitModel } from '../unit.js';
import { LegendComponent } from './component.js';
export interface LegendEncodeParams {
fieldOrDatumDef: TypedFieldDef<string> | DatumDef;
model: UnitModel;
channel: NonPositionScaleChannel;
legendCmpt: LegendComponent;
legendType: LegendType;
}
export declare const legendEncodeRules: {
[part in keyof LegendEncode]?: (spec: EncodeEntry, params: LegendEncodeParams) => EncodeEntry;
};
export declare function symbols(symbolsSpec: any, { fieldOrDatumDef, model, channel, legendCmpt, legendType }: LegendEncodeParams): SymbolEncodeEntry;
export declare function gradient(gradientSpec: any, { model, legendType, legendCmpt }: LegendEncodeParams): SymbolEncodeEntry;
export declare function labels(specifiedlabelsSpec: any, { fieldOrDatumDef, model, channel, legendCmpt }: LegendEncodeParams): any;
export declare function entries(entriesSpec: any, { legendCmpt }: LegendEncodeParams): any;
export declare function getFirstConditionValue<V extends Value | Gradient>(channelDef: Encoding<string>['fill' | 'stroke' | 'shape']): V;
//# sourceMappingURL=encode.d.ts.map