view web/timeline/TimeAxis.coffee @ 2435:207fe0670952

+ bin/rdf2dot
author drewp@bigasterisk.com
date Wed, 29 May 2024 14:56:58 -0700
parents 4556eebe5d73
children
line wrap: on
line source

log = debug('timeline')
debug.enable('*')

Drawing = window.Drawing
ROW_COUNT = 7




@customElement("light9-timeline-time-axis")
class TimeAxis extends LitElement
  @getter_properties:
    viewState: { type: Object, notify: true, observer: "onViewState" }
  onViewState: ->
    ko.computed =>
      dependOn = [@viewState.zoomSpec.t1(), @viewState.zoomSpec.t2()]
      pxPerTick = 50
      axis = d3.axisTop(@viewState.zoomInX).ticks(@viewState.width() / pxPerTick)
      d3.select(@$.axis).call(axis)