This docs on this page refers to a PREVIOUS VERSION. For the latest stable release, go to https://docs.bokeh.org/

Archived docs for versions <= 1.0.4 have had to be modified from their original published configuration, and may be missing some features (e.g. source listing)

All users are encourage to update to version 1.1 or later, as soon as they are able.

Bokeh Docs

Specialized Axis Ticking

This example shows how to create a custom TickFormatter class that displays the first tick of every axis as-is, and every subsequent tick as an offset from the first. Pan and zoom the plot below and watch the x-axis.

          from bokeh.io import output_file, show
          from bokeh.models import TickFormatter
          from bokeh.plotting import figure
          
          JS_CODE = """
          TickFormatter = require "models/formatters/tick_formatter"
          
          class MyFormatter extends TickFormatter.Model
            type: "MyFormatter"
          
            # TickFormatters should implement this method, which accepts a lisst
            # of numbers (ticks) and returns a list of strings
            doFormat: (ticks) ->
              # format the first tick as-is
              formatted = ["#{ticks[0]}"]
          
              # format the remaining ticks as a difference from the first
              for i in [1...ticks.length]
                 formatted.push("+#{(ticks[i]-ticks[0]).toPrecision(2)}")
          
              return formatted
          
          module.exports =
            Model: MyFormatter
          """
          
          class MyFormatter(TickFormatter):
          
              __implementation__ = JS_CODE
          
          p = figure()
          p.circle([1,2,3,4,6], [5,7,3,2,4])
          
          p.xaxis.formatter = MyFormatter()
          
          show(p)