@quartic/bokehjs
Version:
Interactive, novel data visualization
20 lines (15 loc) • 390 B
text/coffeescript
import {Widget, WidgetView} from "./widget"
import * as p from "core/properties"
export class PanelView extends WidgetView
render: () ->
super()
.empty()
return @
export class Panel extends Widget
type: "Panel"
default_view: PanelView
{
title: [ p.String, "" ]
child: [ p.Instance ]
closable: [ p.Bool, false ]
}