UNPKG

@bokeh/bokehjs

Version:

Interactive, novel data visualization

14 lines 311 B
import { Coordinate } from "./coordinate"; export class XY extends Coordinate { static __name__ = "XY"; constructor(attrs) { super(attrs); } static { this.define(({ Float }) => ({ x: [Float], y: [Float], })); } } //# sourceMappingURL=xy.js.map