@vis-pilot/core
v0.1.0
Published
Shared schema and render input types for vis-pilot.
Downloads
117
Readme
@vis-pilot/core
Shared schema and render input types for vis-pilot.
Usage
import type { ChartSchema, RenderInput } from '@vis-pilot/core'
const schema: ChartSchema = {
type: 'line',
dataset: {
dimensions: ['month', 'value'],
source: [{ month: 'Jan', value: 120 }]
},
encode: {
x: 'month',
y: 'value'
}
}
const input: RenderInput = {
mode: 'schema',
input: schema
}