UNPKG

@bokeh/bokehjs

Version:

Interactive, novel data visualization

39 lines 1.09 kB
import { Model } from "../../model"; import { DOMComponentView } from "../../core/dom_view"; import * as visuals from "../../core/visuals"; import * as p from "../../core/properties"; export class MarkingView extends DOMComponentView { static __name__ = "MarkingView"; visuals; size; initialize() { super.initialize(); this.visuals = new visuals.Visuals(this); } request_paint() { this.parent.request_paint(); } get canvas() { return this.parent.canvas; } set_data(source, indices) { const self = this; for (const prop of this.model) { if (!(prop instanceof p.VectorSpec || prop instanceof p.ScalarSpec)) { continue; } const uniform = prop.uniform(source).select(indices); self[`${prop.attr}`] = uniform; } } } export class Marking extends Model { static __name__ = "Marking"; constructor(attrs) { super(attrs); } static { this.define(({}) => ({})); } } //# sourceMappingURL=marking.js.map