diff --git a/.github/workflows/bokeh-ci.yml b/.github/workflows/bokeh-ci.yml index a9a5a343105..2ae38b18a74 100644 --- a/.github/workflows/bokeh-ci.yml +++ b/.github/workflows/bokeh-ci.yml @@ -12,8 +12,8 @@ defaults: shell: bash -l {0} env: - CHROME_VER: "118.0.5993.88" - CHROME_REV: "chromium_2670" + CHROME_VER: "141.0.7390.54" + CHROME_REV: "chromium_3265" jobs: build: diff --git a/.github/workflows/bokehjs-ci.yml b/.github/workflows/bokehjs-ci.yml index 53ce2f7a6ea..5ae7dab730e 100644 --- a/.github/workflows/bokehjs-ci.yml +++ b/.github/workflows/bokehjs-ci.yml @@ -8,8 +8,8 @@ on: pull_request: env: - CHROME_VER: "118.0.5993.88" - CHROME_REV: "chromium_2670" + CHROME_VER: "141.0.7390.54" + CHROME_REV: "chromium_3265" jobs: test: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4ebe3ade8ca..b0bb17a64be 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.14.0 hooks: - - id: ruff + - id: ruff-check stages: [pre-commit] - repo: https://github.com/abravalheri/validate-pyproject diff --git a/bokehjs/make/tasks/test.ts b/bokehjs/make/tasks/test.ts index fa026be4b22..264a4e2ca77 100644 --- a/bokehjs/make/tasks/test.ts +++ b/bokehjs/make/tasks/test.ts @@ -75,7 +75,7 @@ function sys_path(): string { // - bokehjs/test/devtools/devtools.ts // - .github/workflows/bokehjs-ci.yml // - .github/workflows/bokeh-ci.yml -const supported_chromium_revision = "r2670" // 118.0.5993.88 +const supported_chromium_revision = "r3265" // 141.0.7390.54 function chrome(): string { const bokeh_chrome = process.env.BOKEH_CHROME diff --git a/bokehjs/src/lib/core/util/array.ts b/bokehjs/src/lib/core/util/array.ts index b695efab5b2..29bf89773d8 100644 --- a/bokehjs/src/lib/core/util/array.ts +++ b/bokehjs/src/lib/core/util/array.ts @@ -12,7 +12,7 @@ import {min, min_by, max_by, includes, filter} from "./arrayable" export { map, reduce, min, min_by, max, max_by, sum, cumsum, every, some, find, find_last, find_index, find_last_index, sorted_index, - is_empty, includes, contains, sort_by, + is_empty, includes, contains, sort_by, subselect, } from "./arrayable" const {slice} = Array.prototype diff --git a/bokehjs/src/lib/models/annotations/title.ts b/bokehjs/src/lib/models/annotations/title.ts index 7ad3762d944..7c00815c934 100644 --- a/bokehjs/src/lib/models/annotations/title.ts +++ b/bokehjs/src/lib/models/annotations/title.ts @@ -84,9 +84,7 @@ export class TitleView extends TextAnnotationView { protected override _get_size(): Size { const offset = (value: number) => { - // XXX: The magic 2px is for backwards compatibility. This will be removed at - // some point, but currently there is no point breaking half of visual tests. - return value == 0 ? 0 : 2 + value + this.model.standoff + return value == 0 ? 0 : value + this.model.standoff } const {width, height} = super._get_size() if (this.panel!.is_horizontal) { diff --git a/bokehjs/src/lib/models/plots/plot_canvas.ts b/bokehjs/src/lib/models/plots/plot_canvas.ts index 5681da50229..255d044598d 100644 --- a/bokehjs/src/lib/models/plots/plot_canvas.ts +++ b/bokehjs/src/lib/models/plots/plot_canvas.ts @@ -1397,14 +1397,8 @@ export class PlotView extends LayoutDOMView implements Paintable { protected _paint_outline(ctx: Context2d, frame_box: BBox): void { const {outline_line} = this.visuals if (outline_line.doit) { - outline_line.set_value(ctx) - const {x, y, width, height} = this._shrink_to_canvas(frame_box) - ctx.strokeRect(x, y, width, height) - // TODO This should be equivalent, but results in a lot of trivial image - // differences in frame corners. Switch to this approach when migrating - // to newer version of Chromium in integration tests. - // ctx.rect_bbox(this._shrink_to_canvas(frame_box)) - // outline_line.apply(ctx) + ctx.rect_bbox(this._shrink_to_canvas(frame_box)) + outline_line.apply(ctx) } } diff --git a/bokehjs/src/lib/models/tools/inspectors/hover_tool.ts b/bokehjs/src/lib/models/tools/inspectors/hover_tool.ts index 13d4ad48457..0a4ebbe4d19 100644 --- a/bokehjs/src/lib/models/tools/inspectors/hover_tool.ts +++ b/bokehjs/src/lib/models/tools/inspectors/hover_tool.ts @@ -9,6 +9,7 @@ import {Signal} from "core/signaling" import type {Arrayable, Color, Dict} from "core/types" import type {MoveEvent} from "core/ui_events" import {assert, unreachable} from "core/util/assert" +import type {BBox} from "core/util/bbox" import {color2css, color2hex} from "core/util/color" import {enumerate} from "core/util/iterator" import {entries} from "core/util/object" @@ -129,6 +130,7 @@ export class HoverToolView extends InspectToolView { declare model: HoverTool protected _current_sxy: [number, number, InspectDims] | null = null + protected _current_bbox: BBox | null = null public readonly ttmodels: Map = new Map() @@ -184,7 +186,11 @@ export class HoverToolView extends InspectToolView { this.connect(this.plot_view.repainted, () => { if (this.model.active && this._current_sxy != null) { const [sx, sy, dims] = this._current_sxy - this._inspect(sx, sy, dims) + // Avoid triggering inspections if the bbox moves below, as this can lead to infinite + // loops if bbox changes are caused by the inspection itself. + if (this._current_bbox != null && this._current_bbox.equals(this.plot_view.frame.bbox)) { + this._inspect(sx, sy, dims) + } } }) @@ -282,6 +288,7 @@ export class HoverToolView extends InspectToolView { if (dims != null) { this._current_sxy = [sx, sy, dims] + this._current_bbox = this.plot_view.frame.bbox.clone() this._inspect(sx, sy, dims) } else { this._clear() @@ -290,6 +297,7 @@ export class HoverToolView extends InspectToolView { override _move_exit(): void { this._current_sxy = null + this._current_bbox = null this._clear() } diff --git a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.blf b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.blf index 449db8f7311..fcca94f7337 100644 --- a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.blf +++ b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.blf @@ -1,9 +1,9 @@ Row bbox=[0, 0, 400, 600] Figure bbox=[0, 0, 200, 600] Canvas bbox=[0, 0, 200, 600] - CartesianFrame bbox=[5, 27, 190, 568] - Title bbox=[5, 0, 190, 27] + CartesianFrame bbox=[5, 25, 190, 570] + Title bbox=[5, 0, 190, 25] Figure bbox=[200, 0, 200, 600] Canvas bbox=[0, 0, 200, 600] - CartesianFrame bbox=[5, 27, 190, 568] - Title bbox=[5, 0, 190, 27] + CartesianFrame bbox=[5, 25, 190, 570] + Title bbox=[5, 0, 190, 25] diff --git a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.png b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.png index c6560ea2859..a1d636798d4 100644 Binary files a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.png and b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_horizontal_arrows_with_all_arrow_heads.png differ diff --git a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.blf b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.blf index 5a7200bc899..a96244f106c 100644 --- a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.blf +++ b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.blf @@ -1,9 +1,9 @@ Column bbox=[0, 0, 600, 400] Figure bbox=[0, 0, 600, 200] Canvas bbox=[0, 0, 600, 200] - CartesianFrame bbox=[5, 27, 590, 168] - Title bbox=[5, 0, 590, 27] + CartesianFrame bbox=[5, 25, 590, 170] + Title bbox=[5, 0, 590, 25] Figure bbox=[0, 200, 600, 200] Canvas bbox=[0, 0, 600, 200] - CartesianFrame bbox=[5, 27, 590, 168] - Title bbox=[5, 0, 590, 27] + CartesianFrame bbox=[5, 25, 590, 170] + Title bbox=[5, 0, 590, 25] diff --git a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.png b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.png index c471a57f384..74ec3048b2c 100644 Binary files a/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.png and b/bokehjs/test/baselines/linux/Arrow_annotation__should_support_support_vertical_arrows_with_all_arrow_heads.png differ diff --git a/bokehjs/test/baselines/linux/Band_annotation__should_support_basic_positioning.png b/bokehjs/test/baselines/linux/Band_annotation__should_support_basic_positioning.png index 64a64871ee2..14257a36a34 100644 Binary files a/bokehjs/test/baselines/linux/Band_annotation__should_support_basic_positioning.png and b/bokehjs/test/baselines/linux/Band_annotation__should_support_basic_positioning.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_bottom_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_bottom_edge.png index 4d7bae0da75..6e5e399c4fc 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_bottom_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_bottom_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_top_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_top_edge.png index 43dd4fce74b..a81c6c08d04 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_top_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_height_when_dragging_top_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_left_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_left_edge.png index e429b1ceaec..672783264b0 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_left_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_left_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_right_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_right_edge.png index 9b694fd03f0..f90bcbbb943 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_right_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__maximum_width_when_dragging_right_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_bottom_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_bottom_edge.png index 9bbe210ad17..934d0c318a3 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_bottom_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_bottom_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_top_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_top_edge.png index 846826fd35e..c0aace149f0 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_top_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_height_when_dragging_top_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_left_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_left_edge.png index 9e57b00d710..89276cf8b61 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_left_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_left_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_right_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_right_edge.png index 19f60d77e09..ad20f2fe180 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_right_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_constraining__minimum_width_when_dragging_right_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_hover_over_interaction_handles.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_hover_over_interaction_handles.png index 5b9abdee1b4..b30a0987fb9 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_hover_over_interaction_handles.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_hover_over_interaction_handles.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.blf b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.blf index 67bbf7dfe16..67cefdd1faa 100644 --- a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.blf +++ b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.blf @@ -2,97 +2,97 @@ GridPlot bbox=[0, 0, 750, 300] GridBox bbox=[0, 0, 750, 300] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[78, 80, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[78, 79, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[36, 80, 10, 10] - BoxAnnotation bbox=[119, 80, 10, 10] - BoxAnnotation bbox=[78, 51, 10, 10] - BoxAnnotation bbox=[78, 109, 10, 10] - BoxAnnotation bbox=[36, 51, 10, 10] - BoxAnnotation bbox=[119, 51, 10, 10] - BoxAnnotation bbox=[36, 109, 10, 10] - BoxAnnotation bbox=[119, 109, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[36, 79, 10, 10] + BoxAnnotation bbox=[119, 79, 10, 10] + BoxAnnotation bbox=[78, 50, 10, 10] + BoxAnnotation bbox=[78, 108, 10, 10] + BoxAnnotation bbox=[36, 50, 10, 10] + BoxAnnotation bbox=[119, 50, 10, 10] + BoxAnnotation bbox=[36, 108, 10, 10] + BoxAnnotation bbox=[119, 108, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[450, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[78, 80, 10, 10] - BoxAnnotation bbox=[36, 80, 10, 10] - BoxAnnotation bbox=[119, 80, 10, 10] - BoxAnnotation bbox=[78, 51, 10, 10] - BoxAnnotation bbox=[78, 109, 10, 10] - BoxAnnotation bbox=[36, 51, 10, 10] - BoxAnnotation bbox=[119, 51, 10, 10] - BoxAnnotation bbox=[36, 109, 10, 10] - BoxAnnotation bbox=[119, 109, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[78, 79, 10, 10] + BoxAnnotation bbox=[36, 79, 10, 10] + BoxAnnotation bbox=[119, 79, 10, 10] + BoxAnnotation bbox=[78, 50, 10, 10] + BoxAnnotation bbox=[78, 108, 10, 10] + BoxAnnotation bbox=[36, 50, 10, 10] + BoxAnnotation bbox=[119, 50, 10, 10] + BoxAnnotation bbox=[36, 108, 10, 10] + BoxAnnotation bbox=[119, 108, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[600, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[36, 80, 10, 10] - BoxAnnotation bbox=[119, 80, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[36, 79, 10, 10] + BoxAnnotation bbox=[119, 79, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[0, 150, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[78, 51, 10, 10] - BoxAnnotation bbox=[78, 109, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[78, 50, 10, 10] + BoxAnnotation bbox=[78, 108, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[150, 150, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[36, 80, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[36, 79, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[300, 150, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[119, 80, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[119, 79, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[450, 150, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[78, 51, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[78, 50, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] Figure bbox=[600, 150, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 42, 125, 86] - BoxAnnotation bbox=[41, 56, 83, 58] - BoxAnnotation bbox=[78, 109, 10, 10] + CartesianFrame bbox=[20, 40, 125, 88] + BoxAnnotation bbox=[41, 55, 83, 58] + BoxAnnotation bbox=[78, 108, 10, 10] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 42, 20, 86] - Title bbox=[20, 0, 125, 42] + LinearAxis bbox=[0, 40, 20, 88] + Title bbox=[20, 0, 125, 40] diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.png index 4c3c6fd51d3..e014229ff05 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interaction_handles.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_moving.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_moving.png index 19b635485dd..11caddb7a67 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_moving.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_moving.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-left_corner.png index f5315982948..8dd7a32f668 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-right_corner.png index c80947081db..1e83b2b1fe1 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom_edge.png index 735e47962cc..1b651a8fc91 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__bottom_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__left_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__left_edge.png index 6c3eb059488..f153981100a 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__left_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__left_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__right_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__right_edge.png index 5ae6c1e3469..9ebb532ba71 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__right_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__right_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-left_corner.png index 564f186e5c0..a1839e3211f 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-right_corner.png index 6750564334e..62a36d21871 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top_edge.png index f9f4164e866..dca257f1e41 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_non-symmetric_resizing__top_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-left_corner.png index 0d4ec982cba..b90b439054d 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-right_corner.png index 0d4ec982cba..b90b439054d 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom_edge.png index 65b2a6ac67f..6639410d3f5 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__bottom_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__left_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__left_edge.png index c61a53202d5..577b818f038 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__left_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__left_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__right_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__right_edge.png index c61a53202d5..577b818f038 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__right_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__right_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-left_corner.png index 0d4ec982cba..b90b439054d 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-right_corner.png index 0d4ec982cba..b90b439054d 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top_edge.png index 65b2a6ac67f..6639410d3f5 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_interactive_limits__when_symmetric_resizing__top_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_inverted_geometry.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_inverted_geometry.png index a4d87a9a9fa..80ff7e0e30c 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_inverted_geometry.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_inverted_geometry.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_moving_by_dragging.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_moving_by_dragging.png index ce9dc78327a..e618f52cdfb 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_moving_by_dragging.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_moving_by_dragging.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-left_corner.png index 484ea912937..c814f1f5a85 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-right_corner.png index 0b01ebbc892..beef4541974 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom_edge.png index 9bbe210ad17..934d0c318a3 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__bottom_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__left_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__left_edge.png index e429b1ceaec..672783264b0 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__left_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__left_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__right_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__right_edge.png index 9b694fd03f0..f90bcbbb943 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__right_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__right_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-left_corner.png index 4dd40feb03f..f689387f559 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-right_corner.png index 6ac7018d742..9e1051ac141 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top_edge.png index 846826fd35e..c0aace149f0 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_non-symmetric_resizing_by_dragging__top_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.blf b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.blf index 9dde251ce25..64359c5f8d0 100644 --- a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.blf +++ b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] + CartesianFrame bbox=[33, 25, 162, 153] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - BoxAnnotation bbox=[49, 87, 89, 46] - BoxAnnotation bbox=[98, 42, 73, 68] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + BoxAnnotation bbox=[49, 86, 89, 46] + BoxAnnotation bbox=[98, 40, 73, 69] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] + CartesianFrame bbox=[33, 25, 162, 153] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - BoxAnnotation bbox=[49, 87, 89, 46] - BoxAnnotation bbox=[98, 42, 73, 68] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + BoxAnnotation bbox=[49, 86, 89, 46] + BoxAnnotation bbox=[98, 40, 73, 69] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.png index 3ab5429d532..f842d05d3ba 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_data_space.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_node_space.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_node_space.png index 2325726620e..619ba8ffe65 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_node_space.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_positioning_in_node_space.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_rounded_corners_(border_radius_property).png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_rounded_corners_(border_radius_property).png index 536925b9f79..a20f63ef554 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_rounded_corners_(border_radius_property).png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_rounded_corners_(border_radius_property).png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-left_corner.png index e3f716230df..40c8cda9422 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-right_corner.png index e3f716230df..40c8cda9422 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom_edge.png index 25440f1b49e..46be5827689 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__bottom_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__left_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__left_edge.png index d342ad2d57c..5f6af25f65b 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__left_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__left_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__right_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__right_edge.png index d342ad2d57c..5f6af25f65b 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__right_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__right_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-left_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-left_corner.png index e3f716230df..40c8cda9422 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-left_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-left_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-right_corner.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-right_corner.png index e3f716230df..40c8cda9422 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-right_corner.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top-right_corner.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top_edge.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top_edge.png index 25440f1b49e..46be5827689 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top_edge.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_symmetric_resizing_by_dragging__top_edge.png differ diff --git a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_visual_overrides_in_interaction_handles.png b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_visual_overrides_in_interaction_handles.png index f1aabed17ad..b7b9101d1e1 100644 Binary files a/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_visual_overrides_in_interaction_handles.png and b/bokehjs/test/baselines/linux/BoxAnnotation_annotation__should_support_visual_overrides_in_interaction_handles.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Block_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Block_glyph.png index 2a835201c09..eac180a8421 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Block_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Block_glyph.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HBar_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HBar_glyph.png index 9a8075d89b2..e1305aac08b 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HBar_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HBar_glyph.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HStrip_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HStrip_glyph.png index ad2bdd112bb..73d84170a7c 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HStrip_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__HStrip_glyph.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Quad_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Quad_glyph.png index 2a835201c09..eac180a8421 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Quad_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Quad_glyph.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Rect_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Rect_glyph.png index 1a8e394310f..86b3ece3d09 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Rect_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__Rect_glyph.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VBar_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VBar_glyph.png index 04758fa2949..16682c62131 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VBar_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VBar_glyph.png differ diff --git a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VStrip_glyph.png b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VStrip_glyph.png index 9c91eaebcda..b4d48cb2aad 100644 Binary files a/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VStrip_glyph.png and b/bokehjs/test/baselines/linux/BoxEditTool__should_support_moving__VStrip_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10042__disallows_to_set_subgroup_label_orientation_=_0.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10042__disallows_to_set_subgroup_label_orientation_=_0.png index f62f2901b82..9e26140df43 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10042__disallows_to_set_subgroup_label_orientation_=_0.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10042__disallows_to_set_subgroup_label_orientation_=_0.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_allow_signal_idle_with_invisible_UI_components.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_allow_signal_idle_with_invisible_UI_components.png index b2e4c4ea9cf..df0897a4ae0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_allow_signal_idle_with_invisible_UI_components.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_allow_signal_idle_with_invisible_UI_components.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.blf index cc10e72a310..670d03478dd 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.blf @@ -8,14 +8,14 @@ Column bbox=[0, 0, 513, 338] TextInput bbox=[5, 150, 203, 48] Figure bbox=[213, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 250, 251] - GlyphRenderer bbox=[31, 38, 228, 229] - Line bbox=[31, 38, 228, 229] + CartesianFrame bbox=[20, 25, 250, 253] + GlyphRenderer bbox=[31, 37, 228, 230] + Line bbox=[31, 37, 228, 230] LinearAxis bbox=[20, 278, 250, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 250, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 250, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.png index aaa54ac8ac5..87dd353c53c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10125__doesn't_correctly_display_layout_when_visibility_changes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10136__prevents_correct_rendering_of_overlapping_arrows.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10136__prevents_correct_rendering_of_overlapping_arrows.png index 674879b1330..6effd9e5c38 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10136__prevents_correct_rendering_of_overlapping_arrows.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10136__prevents_correct_rendering_of_overlapping_arrows.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10195__makes_extra_axes_render_with_invalid_data_ranges.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10195__makes_extra_axes_render_with_invalid_data_ranges.png index e30c44e9568..c8cde3b92c5 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10195__makes_extra_axes_render_with_invalid_data_ranges.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10195__makes_extra_axes_render_with_invalid_data_ranges.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10219__disallows_correct_placement_of_Rect_glyph_with_partial_categorical_ranges.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10219__disallows_correct_placement_of_Rect_glyph_with_partial_categorical_ranges.png index e38953d560b..657de0397c8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10219__disallows_correct_placement_of_Rect_glyph_with_partial_categorical_ranges.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10219__disallows_correct_placement_of_Rect_glyph_with_partial_categorical_ranges.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10246__makes_a_plot_with_visible_==_false_throw_an_exception.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10246__makes_a_plot_with_visible_==_false_throw_an_exception.png index 7e6920ab783..874764a751c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10246__makes_a_plot_with_visible_==_false_throw_an_exception.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10246__makes_a_plot_with_visible_==_false_throw_an_exception.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.blf index c3e2bf95879..e3c7eca546b 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - Line bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + Line bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - Line bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + Line bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - Line bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + Line bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.png index 9cfc6052246..496720702f9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_lines_with_NaNs_using_SVG_backend.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.blf index 55c80d1ea28..453c1915dce 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - MultiLine bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + MultiLine bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - MultiLine bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + MultiLine bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - MultiLine bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + MultiLine bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.png index 9cfc6052246..496720702f9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10305__disallows_to_render_multi-lines_with_NaNs_using_SVG_backend.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10362__disallows_updating_layout_when_changing_axis_label.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10362__disallows_updating_layout_when_changing_axis_label.png index e7860910e1a..3f2db3e1e2b 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10362__disallows_updating_layout_when_changing_axis_label.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10362__disallows_updating_layout_when_changing_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.blf index a4092aa0e44..2ddc11b01f4 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.blf @@ -1,55 +1,55 @@ GridBox bbox=[0, 0, 600, 600] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[0, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[200, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[400, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[0, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[7, 27, 29, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[7, 25, 29, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[200, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[7, 27, 29, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[7, 25, 29, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[400, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] + CartesianFrame bbox=[36, 25, 159, 153] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[7, 27, 29, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[7, 25, 29, 153] + Title bbox=[36, 0, 159, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.png index f3d6c2fb14e..6cab899dbc0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10369__disallows_ImageURL_glyph_to_compute_correct_bounds_with_different_anchors.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10407__displays_incorrect_value_in_Select_widget_when_options_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10407__displays_incorrect_value_in_Select_widget_when_options_change.png index 8f82146438b..9aeb3ae6239 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10407__displays_incorrect_value_in_Select_widget_when_options_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10407__displays_incorrect_value_in_Select_widget_when_options_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10452__prevents_changing_MultiChoice.disabled_property.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10452__prevents_changing_MultiChoice.disabled_property.png index 10fab18b585..a64e62c0851 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10452__prevents_changing_MultiChoice.disabled_property.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10452__prevents_changing_MultiChoice.disabled_property.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_Arrow_annotation.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_Arrow_annotation.png index 860b980591a..9022a7cead9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_Arrow_annotation.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_Arrow_annotation.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_LabelSet_annotation.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_LabelSet_annotation.png index ee5abff4151..0486e4bb920 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_LabelSet_annotation.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10454__disallows_using_categorical_coordinates_with_LabelSet_annotation.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.blf index 8b08f2df737..6e85e45de36 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 600, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[33, 27, 112, 101] - GlyphRenderer bbox=[11, 7, 156, 141] - Circle bbox=[11, 7, 156, 141] + CartesianFrame bbox=[33, 25, 112, 103] + GlyphRenderer bbox=[11, 4, 156, 145] + Circle bbox=[11, 4, 156, 145] LinearAxis bbox=[33, 128, 112, 22] - LinearAxis bbox=[0, 27, 33, 101] - Title bbox=[33, 0, 112, 27] + LinearAxis bbox=[0, 25, 33, 103] + Title bbox=[33, 0, 112, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[33, 27, 112, 101] - GlyphRenderer bbox=[11, 7, 156, 141] - Circle bbox=[11, 7, 156, 141] + CartesianFrame bbox=[33, 25, 112, 103] + GlyphRenderer bbox=[11, 4, 156, 145] + Circle bbox=[11, 4, 156, 145] LinearAxis bbox=[33, 128, 112, 22] - LinearAxis bbox=[0, 27, 33, 101] - Title bbox=[33, 0, 112, 27] + LinearAxis bbox=[0, 25, 33, 103] + Title bbox=[33, 0, 112, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[33, 27, 112, 101] - GlyphRenderer bbox=[11, 7, 156, 141] - Circle bbox=[11, 7, 156, 141] + CartesianFrame bbox=[33, 25, 112, 103] + GlyphRenderer bbox=[11, 4, 156, 145] + Circle bbox=[11, 4, 156, 145] LinearAxis bbox=[33, 128, 112, 22] - LinearAxis bbox=[0, 27, 33, 101] - Title bbox=[33, 0, 112, 27] + LinearAxis bbox=[0, 25, 33, 103] + Title bbox=[33, 0, 112, 25] Figure bbox=[450, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[33, 27, 112, 101] - GlyphRenderer bbox=[11, 7, 156, 141] - Circle bbox=[11, 7, 156, 141] + CartesianFrame bbox=[33, 25, 112, 103] + GlyphRenderer bbox=[11, 4, 156, 145] + Circle bbox=[11, 4, 156, 145] LinearAxis bbox=[33, 128, 112, 22] - LinearAxis bbox=[0, 27, 33, 101] - Title bbox=[33, 0, 112, 27] + LinearAxis bbox=[0, 25, 33, 103] + Title bbox=[33, 0, 112, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.png index 44d71a3d6c1..227a0c37c47 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_circle_glyph_with_reversed_ranges_and_radius_in_data_units.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_marker_glyphs_with_reversed_ranges.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_marker_glyphs_with_reversed_ranges.png index 79e998894fd..af7075202ea 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_marker_glyphs_with_reversed_ranges.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10457__prevents_rendering_marker_glyphs_with_reversed_ranges.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10472__prevents_GraphRenderer_to_participate_in_auto-ranging.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10472__prevents_GraphRenderer_to_participate_in_auto-ranging.png index e3466453e37..a9d3b0c3184 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10472__prevents_GraphRenderer_to_participate_in_auto-ranging.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10472__prevents_GraphRenderer_to_participate_in_auto-ranging.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10488__disallows_correct_placement_of_Rect_glyph_with_datetime_values.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10488__disallows_correct_placement_of_Rect_glyph_with_datetime_values.png index d7f830a8f32..1ec89131373 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10488__disallows_correct_placement_of_Rect_glyph_with_datetime_values.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10488__disallows_correct_placement_of_Rect_glyph_with_datetime_values.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_x_direction_when_cols_are_modified.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_x_direction_when_cols_are_modified.png index 81a1b54ff04..e80c4c937cb 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_x_direction_when_cols_are_modified.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_x_direction_when_cols_are_modified.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_y_direction_when_rows_are_modified.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_y_direction_when_rows_are_modified.png index 36f4774b169..85566ff0213 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_y_direction_when_rows_are_modified.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10498__prevents_GridBox_from_rebuilding_in_the_y_direction_when_rows_are_modified.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10507__prevents_changing_MultiSelect.disabled_property.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10507__prevents_changing_MultiSelect.disabled_property.png index c1f056cd717..18ebfab9f23 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10507__prevents_changing_MultiSelect.disabled_property.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10507__prevents_changing_MultiSelect.disabled_property.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10541__prevents_Slope_with_gradient=0.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10541__prevents_Slope_with_gradient=0.png index 5b6fee8191f..30f07dbde62 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10541__prevents_Slope_with_gradient=0.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10541__prevents_Slope_with_gradient=0.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_x-range.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_x-range.png index 1849097566f..43544b96f61 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_x-range.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_x-range.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_y-range.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_y-range.png index a8b9f233cc7..85a186693f7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_y-range.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10575__disallows_rendering_Whisker_annotation_with_a_categorical_y-range.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.blf index da4d624650b..c75a3d3ad4f 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - MultiLine bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + MultiLine bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - MultiLine bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + MultiLine bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - MultiLine bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + MultiLine bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.png index b0fe34d394e..b1130408fc8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10589__prevents_correctly_filtering_out_indices_when_using_MultiLine_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10695__prevents_showing_MultiChoice's_dropdown_menu.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10695__prevents_showing_MultiChoice's_dropdown_menu.png index fdf99033293..8a0e6116fdf 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10695__prevents_showing_MultiChoice's_dropdown_menu.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10695__prevents_showing_MultiChoice's_dropdown_menu.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10725__renders_image_glyphs_in_wrong_orientation_using_SVG_backend.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10725__renders_image_glyphs_in_wrong_orientation_using_SVG_backend.png index 3b9c51a1818..14ddc851e6d 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10725__renders_image_glyphs_in_wrong_orientation_using_SVG_backend.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10725__renders_image_glyphs_in_wrong_orientation_using_SVG_backend.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10749__prevents_DataTable_from_correctly_ordering_rows_and_formatting_string_dates.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10749__prevents_DataTable_from_correctly_ordering_rows_and_formatting_string_dates.png index 0b8edc0137b..8d20282e286 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10749__prevents_DataTable_from_correctly_ordering_rows_and_formatting_string_dates.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10749__prevents_DataTable_from_correctly_ordering_rows_and_formatting_string_dates.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10809__prevents_repaint_of_resized_layoutable_renderers.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10809__prevents_repaint_of_resized_layoutable_renderers.png index ffca3f4ecc3..91d2da024b0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10809__prevents_repaint_of_resized_layoutable_renderers.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10809__prevents_repaint_of_resized_layoutable_renderers.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_larger_than_optimal_size.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_larger_than_optimal_size.png index dea15e511f7..a405fe06b9f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_larger_than_optimal_size.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_larger_than_optimal_size.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_smaller_than_optimal_size.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_smaller_than_optimal_size.png index 495d8ce995f..3ea68556cb6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_smaller_than_optimal_size.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10851__results_in_incorrect_layout_when_viewport_is_smaller_than_optimal_size.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#10856__makes_GlyphRenderer_ignore_changes_to_secondary_glyphs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#10856__makes_GlyphRenderer_ignore_changes_to_secondary_glyphs.png index 39604088697..fc35a9b1945 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#10856__makes_GlyphRenderer_ignore_changes_to_secondary_glyphs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#10856__makes_GlyphRenderer_ignore_changes_to_secondary_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11006__prevents_scaling_of_superscripts_when_using_non-px_font_size_units.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11006__prevents_scaling_of_superscripts_when_using_non-px_font_size_units.png index 052025b8809..71bafaad363 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11006__prevents_scaling_of_superscripts_when_using_non-px_font_size_units.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11006__prevents_scaling_of_superscripts_when_using_non-px_font_size_units.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11033__prevents_an_update_of_plot_layout_after_adding_an_axis.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11033__prevents_an_update_of_plot_layout_after_adding_an_axis.png index 4ac716e8356..cca4f099348 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11033__prevents_an_update_of_plot_layout_after_adding_an_axis.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11033__prevents_an_update_of_plot_layout_after_adding_an_axis.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11035__doesn't_allow_to_use_non-Plot_models_in_gridplot().png b/bokehjs/test/baselines/linux/Bug__in_issue_#11035__doesn't_allow_to_use_non-Plot_models_in_gridplot().png index 2a759f415e2..03660d5808f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11035__doesn't_allow_to_use_non-Plot_models_in_gridplot().png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11035__doesn't_allow_to_use_non-Plot_models_in_gridplot().png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11045__prevents_correct_paint_of_glyphs_using_hatch_patterns_in_SVG_backend_after_pan.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11045__prevents_correct_paint_of_glyphs_using_hatch_patterns_in_SVG_backend_after_pan.png index 6a11575609d..3e0ea532eff 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11045__prevents_correct_paint_of_glyphs_using_hatch_patterns_in_SVG_backend_after_pan.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11045__prevents_correct_paint_of_glyphs_using_hatch_patterns_in_SVG_backend_after_pan.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11110__doesn't_correctly_measure_fonts_if_font_size_is_provided_in_relative_units.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11110__doesn't_correctly_measure_fonts_if_font_size_is_provided_in_relative_units.png index 3c060bf4d71..e3df3dd1afc 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11110__doesn't_correctly_measure_fonts_if_font_size_is_provided_in_relative_units.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11110__doesn't_correctly_measure_fonts_if_font_size_is_provided_in_relative_units.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11149__makes_hatch_patterns_rotate_with_glyph's_rotation.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11149__makes_hatch_patterns_rotate_with_glyph's_rotation.png index d07a2e31043..b7ce7aacd3c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11149__makes_hatch_patterns_rotate_with_glyph's_rotation.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11149__makes_hatch_patterns_rotate_with_glyph's_rotation.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11154__does_not_allow_the_plotting_API_to_consider_hatch_visuals.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11154__does_not_allow_the_plotting_API_to_consider_hatch_visuals.png index c8b3af3d2a5..af6b4065b8c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11154__does_not_allow_the_plotting_API_to_consider_hatch_visuals.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11154__does_not_allow_the_plotting_API_to_consider_hatch_visuals.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11162__makes_axis_allocate_space_for_invisible_tick_labels.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11162__makes_axis_allocate_space_for_invisible_tick_labels.png index 9fc8f867c93..34748978cbf 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11162__makes_axis_allocate_space_for_invisible_tick_labels.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11162__makes_axis_allocate_space_for_invisible_tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11203__doesn't_allow_to_set_RadioGroup.active_=_null.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11203__doesn't_allow_to_set_RadioGroup.active_=_null.png index e37284e6b11..9a3c07e143e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11203__doesn't_allow_to_set_RadioGroup.active_=_null.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11203__doesn't_allow_to_set_RadioGroup.active_=_null.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11231__doesn't_allow_to_reposition_inner_axes_after_layout.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11231__doesn't_allow_to_reposition_inner_axes_after_layout.png index cb8f98f434b..cb39f8b4cc7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11231__doesn't_allow_to_reposition_inner_axes_after_layout.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11231__doesn't_allow_to_reposition_inner_axes_after_layout.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11339__collapses_layout_after_toggling_visibility.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11339__collapses_layout_after_toggling_visibility.png index f904b089b0c..e45359b7fa1 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11339__collapses_layout_after_toggling_visibility.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11339__collapses_layout_after_toggling_visibility.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11365__prevents_showing_MultiChoice's_dropdown_menu_over_subsequent_roots.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11365__prevents_showing_MultiChoice's_dropdown_menu_over_subsequent_roots.png index f0ed6d721d1..ad7f8928a6c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11365__prevents_showing_MultiChoice's_dropdown_menu_over_subsequent_roots.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11365__prevents_showing_MultiChoice's_dropdown_menu_over_subsequent_roots.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11367__doesn't_allow_to_render_legend_for_ellipse_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11367__doesn't_allow_to_render_legend_for_ellipse_glyph.png index 68a142a3dd9..022192c6c06 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11367__doesn't_allow_to_render_legend_for_ellipse_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11367__doesn't_allow_to_render_legend_for_ellipse_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11378__doesn't_allow_to_correctly_compute_bounds_when_using_MultiLine_Glyph_with_a_log_axis.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11378__doesn't_allow_to_correctly_compute_bounds_when_using_MultiLine_Glyph_with_a_log_axis.png index 694626d018e..0e8c06b8509 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11378__doesn't_allow_to_correctly_compute_bounds_when_using_MultiLine_Glyph_with_a_log_axis.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11378__doesn't_allow_to_correctly_compute_bounds_when_using_MultiLine_Glyph_with_a_log_axis.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11413__doesn't_allow_to_remove_an_annotation_element_associated_with_a_tile_renderer.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11413__doesn't_allow_to_remove_an_annotation_element_associated_with_a_tile_renderer.png index 133718d4ac6..983b5fb2793 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11413__doesn't_allow_to_remove_an_annotation_element_associated_with_a_tile_renderer.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11413__doesn't_allow_to_remove_an_annotation_element_associated_with_a_tile_renderer.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11437__doesn't_allow_to_use_correct_subset_indices_with_image_glyph_during_inspection.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11437__doesn't_allow_to_use_correct_subset_indices_with_image_glyph_during_inspection.png index 1cbb2958032..6c503ea84e0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11437__doesn't_allow_to_use_correct_subset_indices_with_image_glyph_during_inspection.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11437__doesn't_allow_to_use_correct_subset_indices_with_image_glyph_during_inspection.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11446__doesn't_allow_to_correctly_compute_inspection_indices_in_vline_or_hline_mode.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11446__doesn't_allow_to_correctly_compute_inspection_indices_in_vline_or_hline_mode.png index 65b9cced78e..419a1a093c7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11446__doesn't_allow_to_correctly_compute_inspection_indices_in_vline_or_hline_mode.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11446__doesn't_allow_to_correctly_compute_inspection_indices_in_vline_or_hline_mode.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.blf index 513aa1580bc..f0600ac6511 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 5, 80, 173] - GlyphRenderer bbox=[30, 13, 72, 157] - Image bbox=[30, 13, 72, 157] - LinearAxis bbox=[26, 178, 80, 22] + CartesianFrame bbox=[26, 5, 82, 173] + GlyphRenderer bbox=[30, 13, 74, 157] + Image bbox=[30, 13, 74, 157] + LinearAxis bbox=[26, 178, 82, 22] LinearAxis bbox=[0, 5, 26, 173] - ColorBar bbox=[106, 5, 94, 173] + ColorBar bbox=[108, 5, 92, 173] LinearAxis bbox=[160, 15, 30, 153] - Title bbox=[116, 15, 19, 153] + Title bbox=[118, 15, 17, 153] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.png index 37e459f2b50..a9e9a3850d7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11462__doesn't_update_ColorBar_after_mapper_axis_title_property_updates.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11479__doesn't_allow_to_render_math_text_in_multiple_plots.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11479__doesn't_allow_to_render_math_text_in_multiple_plots.png index e059538a1d3..9fdb236d396 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11479__doesn't_allow_to_render_math_text_in_multiple_plots.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11479__doesn't_allow_to_render_math_text_in_multiple_plots.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11508__doesn't_allow_to_correctly_compute_log_bounds_for_data_ranging.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11508__doesn't_allow_to_correctly_compute_log_bounds_for_data_ranging.png index ed2b9244018..78255b726eb 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11508__doesn't_allow_to_correctly_compute_log_bounds_for_data_ranging.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11508__doesn't_allow_to_correctly_compute_log_bounds_for_data_ranging.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11547__doesn't_render_changes_of_graph_layout_provider.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11547__doesn't_render_changes_of_graph_layout_provider.png index e3466453e37..a9d3b0c3184 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11547__doesn't_render_changes_of_graph_layout_provider.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11547__doesn't_render_changes_of_graph_layout_provider.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.blf index f17c404014c..0a45ff2e90f 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.png index 1bd0e24fae8..9012b08e9c7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageRGBA_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.blf index 2e017585f21..117b5a42980 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.blf @@ -1,13 +1,13 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] + CartesianFrame bbox=[26, 25, 169, 153] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] + CartesianFrame bbox=[26, 25, 169, 153] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.png index d5cb8ed839d..afc4f8f8708 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_ImageURL_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.blf index 0d55efb43dd..f77cc28b023 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - Image bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + Image bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - Image bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + Image bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.png index a7fcfd471c7..57d24b589dd 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11548__doesn't_allow_vectorized_global_alpha_in_Image_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11551__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_images.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11551__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_images.png index dccff32b9c2..35ae4f05157 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11551__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_images.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11551__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_images.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.blf index 42544d38bdd..053e57719ae 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 300, 200] Canvas bbox=[0, 0, 300, 200] - CartesianFrame bbox=[29, 27, 266, 151] - GlyphRenderer bbox=[-37, 65, 266, 151] - Text bbox=[-37, 65, 266, 151] + CartesianFrame bbox=[29, 25, 266, 153] + GlyphRenderer bbox=[-37, 63, 266, 153] + Text bbox=[-37, 63, 266, 153] LinearAxis bbox=[29, 178, 266, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 200] Canvas bbox=[0, 0, 300, 200] - CartesianFrame bbox=[29, 27, 266, 151] - GlyphRenderer bbox=[-37, 65, 266, 151] - Text bbox=[-37, 65, 266, 151] + CartesianFrame bbox=[29, 25, 266, 153] + GlyphRenderer bbox=[-37, 63, 266, 153] + Text bbox=[-37, 63, 266, 153] LinearAxis bbox=[29, 178, 266, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.png index 22c0fd76973..71f29d09f82 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11587__doesn't_allow_SVG_backend_to_respect_clip_paths_when_painting_text.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'below'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'below'.png index ba143a809f5..2e4261be6da 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'below'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'below'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'left'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'left'.png index 4d540af1dfd..429ee214364 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'left'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'left'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'right'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'right'.png index 8a1a7f36114..4be961dcf58 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'right'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_'right'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_null.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_null.png index 617679bef17..1bb83786a2f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_null.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_'above'_to_null.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_null_to_'above'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_null_to_'above'.png index 3e6364d7f24..313c53799fc 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_null_to_'above'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_GridPlot_toolbar_from_null_to_'above'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'below'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'below'.png index bcd19e18705..1840daff375 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'below'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'below'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'left'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'left'.png index 653b57f24c3..b8c4353b91f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'left'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'left'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'right'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'right'.png index f9a19907394..6b42364edc6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'right'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_'right'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_null.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_null.png index 01939a2fcd3..b7497b67f37 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_null.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_'above'_to_null.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_null_to_'above'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_null_to_'above'.png index 2983e7d6e61..536224df8ba 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_null_to_'above'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11623__doesn't_allow_changing_location_of_a_Plot_toolbar_from_null_to_'above'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11646__disallows_using_image_texture_as_grid_line's_band_fill.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11646__disallows_using_image_texture_as_grid_line's_band_fill.png index 960f58aa415..ec4a76d9c04 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11646__disallows_using_image_texture_as_grid_line's_band_fill.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11646__disallows_using_image_texture_as_grid_line's_band_fill.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.blf index 7887015b466..76c4bef2ae5 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.blf @@ -1,49 +1,49 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 100] Canvas bbox=[0, 0, 300, 100] - CartesianFrame bbox=[5, 27, 290, 68] - GlyphRenderer bbox=[18, 30, 264, 62] - Line bbox=[18, 30, 264, 62] - GlyphRenderer bbox=[18, 30, 264, 62] - Scatter bbox=[18, 30, 264, 62] - Title bbox=[5, 0, 290, 27] + CartesianFrame bbox=[5, 25, 290, 70] + GlyphRenderer bbox=[18, 28, 264, 64] + Line bbox=[18, 28, 264, 64] + GlyphRenderer bbox=[18, 28, 264, 64] + Scatter bbox=[18, 28, 264, 64] + Title bbox=[5, 0, 290, 25] Figure bbox=[0, 100, 300, 100] Canvas bbox=[0, 0, 300, 100] - CartesianFrame bbox=[5, 27, 290, 68] - GlyphRenderer bbox=[18, 30, 264, 62] - Line bbox=[18, 30, 264, 62] - GlyphRenderer bbox=[18, 30, 264, 62] - Scatter bbox=[18, 30, 264, 62] - Title bbox=[5, 0, 290, 27] + CartesianFrame bbox=[5, 25, 290, 70] + GlyphRenderer bbox=[18, 28, 264, 64] + Line bbox=[18, 28, 264, 64] + GlyphRenderer bbox=[18, 28, 264, 64] + Scatter bbox=[18, 28, 264, 64] + Title bbox=[5, 0, 290, 25] Figure bbox=[0, 200, 300, 100] Canvas bbox=[0, 0, 300, 100] - CartesianFrame bbox=[5, 27, 290, 68] - GlyphRenderer bbox=[18, 30, 264, 62] - Line bbox=[18, 30, 264, 62] - GlyphRenderer bbox=[18, 30, 264, 62] - Scatter bbox=[18, 30, 264, 62] - Title bbox=[5, 0, 290, 27] + CartesianFrame bbox=[5, 25, 290, 70] + GlyphRenderer bbox=[18, 28, 264, 64] + Line bbox=[18, 28, 264, 64] + GlyphRenderer bbox=[18, 28, 264, 64] + Scatter bbox=[18, 28, 264, 64] + Title bbox=[5, 0, 290, 25] Figure bbox=[0, 300, 300, 100] Canvas bbox=[0, 0, 300, 100] - CartesianFrame bbox=[5, 27, 290, 68] - GlyphRenderer bbox=[18, 30, 264, 62] - Line bbox=[18, 30, 264, 62] - GlyphRenderer bbox=[18, 30, 264, 62] - Scatter bbox=[18, 30, 264, 62] - Title bbox=[5, 0, 290, 27] + CartesianFrame bbox=[5, 25, 290, 70] + GlyphRenderer bbox=[18, 28, 264, 64] + Line bbox=[18, 28, 264, 64] + GlyphRenderer bbox=[18, 28, 264, 64] + Scatter bbox=[18, 28, 264, 64] + Title bbox=[5, 0, 290, 25] Figure bbox=[0, 400, 300, 100] Canvas bbox=[0, 0, 300, 100] - CartesianFrame bbox=[5, 27, 290, 68] - GlyphRenderer bbox=[18, 30, 264, 62] - Line bbox=[18, 30, 264, 62] - GlyphRenderer bbox=[18, 30, 264, 62] - Scatter bbox=[18, 30, 264, 62] - Title bbox=[5, 0, 290, 27] + CartesianFrame bbox=[5, 25, 290, 70] + GlyphRenderer bbox=[18, 28, 264, 64] + Line bbox=[18, 28, 264, 64] + GlyphRenderer bbox=[18, 28, 264, 64] + Scatter bbox=[18, 28, 264, 64] + Title bbox=[5, 0, 290, 25] Figure bbox=[0, 500, 300, 100] Canvas bbox=[0, 0, 300, 100] - CartesianFrame bbox=[5, 27, 290, 68] - GlyphRenderer bbox=[18, 30, 264, 62] - Line bbox=[18, 30, 264, 62] - GlyphRenderer bbox=[18, 30, 264, 62] - Scatter bbox=[18, 30, 264, 62] - Title bbox=[5, 0, 290, 27] + CartesianFrame bbox=[5, 25, 290, 70] + GlyphRenderer bbox=[18, 28, 264, 64] + Line bbox=[18, 28, 264, 64] + GlyphRenderer bbox=[18, 28, 264, 64] + Scatter bbox=[18, 28, 264, 64] + Title bbox=[5, 0, 290, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.png index 7b364ff1ab2..97726d34df2 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11661__makes_line_render_incorrectly_when_painting_with_a_subset_of_indices.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_computation_of_tight_bounds_for_circles.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_computation_of_tight_bounds_for_circles.png index cbc3ae2a1d2..df21f47556b 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_computation_of_tight_bounds_for_circles.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_computation_of_tight_bounds_for_circles.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_inclusion_of_circle_radius_in_bounds_computations.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_inclusion_of_circle_radius_in_bounds_computations.png index 7e2b63b688d..70ef61f6d0a 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_inclusion_of_circle_radius_in_bounds_computations.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11704__doesn't_allow_inclusion_of_circle_radius_in_bounds_computations.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11770__prevents_correct_computation_of_linked_data_ranges_and_a_subset_of_plots_not_visible.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11770__prevents_correct_computation_of_linked_data_ranges_and_a_subset_of_plots_not_visible.png index 29005766ffd..cd79393361c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11770__prevents_correct_computation_of_linked_data_ranges_and_a_subset_of_plots_not_visible.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11770__prevents_correct_computation_of_linked_data_ranges_and_a_subset_of_plots_not_visible.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11801__prevents_computation_of_data_ranges_if_a_plot_was_initially_not_visible.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11801__prevents_computation_of_data_ranges_if_a_plot_was_initially_not_visible.png index 2d168c0ffb7..13bf4f2b345 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11801__prevents_computation_of_data_ranges_if_a_plot_was_initially_not_visible.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11801__prevents_computation_of_data_ranges_if_a_plot_was_initially_not_visible.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11832__should_x-zoom_the_x-axis_when_the_y-axis_is_bounded.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11832__should_x-zoom_the_x-axis_when_the_y-axis_is_bounded.png index 8978d94a171..f178686bc8e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11832__should_x-zoom_the_x-axis_when_the_y-axis_is_bounded.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11832__should_x-zoom_the_x-axis_when_the_y-axis_is_bounded.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11839__doesn't_allow_to_use_active__properties_with_tool_proxies.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11839__doesn't_allow_to_use_active__properties_with_tool_proxies.png index aa1c48e226e..aed488c49c3 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11839__doesn't_allow_to_use_active__properties_with_tool_proxies.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11839__doesn't_allow_to_use_active__properties_with_tool_proxies.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11930__doesn't_allow_overriding_int_major_axis_labels_with_floats.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11930__doesn't_allow_overriding_int_major_axis_labels_with_floats.png index e10b1bd6896..03f139c2509 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11930__doesn't_allow_overriding_int_major_axis_labels_with_floats.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11930__doesn't_allow_overriding_int_major_axis_labels_with_floats.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11946__doesn't_allow_to_persist_menus_after_a_re-render.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11946__doesn't_allow_to_persist_menus_after_a_re-render.png index c67a9b10373..7c522cab9c4 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11946__doesn't_allow_to_persist_menus_after_a_re-render.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11946__doesn't_allow_to_persist_menus_after_a_re-render.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#11955__does_not_allow_updating_DataTable_when_its_CDSView's_filters_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#11955__does_not_allow_updating_DataTable_when_its_CDSView's_filters_change.png index ce1cccba09c..53da51071b7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#11955__does_not_allow_updating_DataTable_when_its_CDSView's_filters_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#11955__does_not_allow_updating_DataTable_when_its_CDSView's_filters_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_color_mapper_of_a_color_bar.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_color_mapper_of_a_color_bar.png index bfae0a5d598..61b3f011093 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_color_mapper_of_a_color_bar.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_color_mapper_of_a_color_bar.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_palette_of_a_color_mapper_of_a_color_bar.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_palette_of_a_color_mapper_of_a_color_bar.png index 78555ff76cb..6f72accecd0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_palette_of_a_color_mapper_of_a_color_bar.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12001__doesn't_allow_updating_palette_of_a_color_mapper_of_a_color_bar.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12058__renders_gaps_in_straight_bevel-joined_webgl_lines.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12058__renders_gaps_in_straight_bevel-joined_webgl_lines.png index cb358d494de..21fd0027100 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12058__renders_gaps_in_straight_bevel-joined_webgl_lines.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12058__renders_gaps_in_straight_bevel-joined_webgl_lines.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12115__prevents_showing_MultiChoice's_dropdown_items_correctly.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12115__prevents_showing_MultiChoice's_dropdown_items_correctly.png index 4669f80d92f..b3303b7fad6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12115__prevents_showing_MultiChoice's_dropdown_items_correctly.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12115__prevents_showing_MultiChoice's_dropdown_items_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12127__prevents_displaying_non-text_labels_in_LabelSet.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12127__prevents_displaying_non-text_labels_in_LabelSet.png index 2105261847f..76ab84020ff 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12127__prevents_displaying_non-text_labels_in_LabelSet.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12127__prevents_displaying_non-text_labels_in_LabelSet.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12155__prevents_computing_correct_layout_for_inline_radio_group.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12155__prevents_computing_correct_layout_for_inline_radio_group.png index 5a8cd8c2eec..1ef709a18d0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12155__prevents_computing_correct_layout_for_inline_radio_group.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12155__prevents_computing_correct_layout_for_inline_radio_group.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12157__doesn't_allow_MultiChoice_widget's_menu_to_persist_after_selection_an_option.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12157__doesn't_allow_MultiChoice_widget's_menu_to_persist_after_selection_an_option.png index 585c649d222..527a20f9fed 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12157__doesn't_allow_MultiChoice_widget's_menu_to_persist_after_selection_an_option.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12157__doesn't_allow_MultiChoice_widget's_menu_to_persist_after_selection_an_option.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12205__prevents_expansion_of_Div_when_using_sizing_mode='stretch_width'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12205__prevents_expansion_of_Div_when_using_sizing_mode='stretch_width'.png index 8461aa17728..293fc228646 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12205__prevents_expansion_of_Div_when_using_sizing_mode='stretch_width'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12205__prevents_expansion_of_Div_when_using_sizing_mode='stretch_width'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.blf index 770112b5ba1..df684615dd8 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.blf @@ -1,21 +1,21 @@ Row bbox=[0, 0, 300, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[36, 27, 109, 101] - GlyphRenderer bbox=[41, 32, 99, 91] - Line bbox=[41, 32, 99, 91] - GlyphRenderer bbox=[41, 32, 99, 91] - Scatter bbox=[41, 32, 99, 91] + CartesianFrame bbox=[36, 25, 109, 103] + GlyphRenderer bbox=[41, 30, 99, 93] + Line bbox=[41, 30, 99, 93] + GlyphRenderer bbox=[41, 30, 99, 93] + Scatter bbox=[41, 30, 99, 93] LinearAxis bbox=[36, 128, 109, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 109, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[36, 27, 109, 101] - GlyphRenderer bbox=[41, 32, 99, 91] - Line bbox=[41, 32, 99, 91] - GlyphRenderer bbox=[41, 32, 99, 91] - Scatter bbox=[41, 32, 99, 91] + CartesianFrame bbox=[36, 25, 109, 103] + GlyphRenderer bbox=[41, 30, 99, 93] + Line bbox=[41, 30, 99, 93] + GlyphRenderer bbox=[41, 30, 99, 93] + Scatter bbox=[41, 30, 99, 93] LinearAxis bbox=[36, 128, 109, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 109, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.png index 1a346b7c2de..712b39cf570 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__and_#12429_prevents_selection_of_line_segments_using_indices.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.blf index bd5fd82e347..48629734562 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 300, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] + CartesianFrame bbox=[29, 25, 116, 103] GlyphRenderer bbox=[34, 123, 106, 0] Scatter bbox=[34, 123, 106, 0] - GlyphRenderer bbox=[34, 78, 106, 0] - Scatter bbox=[34, 78, 106, 0] - GlyphRenderer bbox=[34, 32, 106, 0] - Scatter bbox=[34, 32, 106, 0] + GlyphRenderer bbox=[34, 77, 106, 0] + Scatter bbox=[34, 77, 106, 0] + GlyphRenderer bbox=[34, 30, 106, 0] + Scatter bbox=[34, 30, 106, 0] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] + CartesianFrame bbox=[29, 25, 116, 103] GlyphRenderer bbox=[34, 123, 106, 0] Scatter bbox=[34, 123, 106, 0] - GlyphRenderer bbox=[34, 78, 106, 0] - Scatter bbox=[34, 78, 106, 0] - GlyphRenderer bbox=[34, 32, 106, 0] - Scatter bbox=[34, 32, 106, 0] + GlyphRenderer bbox=[34, 77, 106, 0] + Scatter bbox=[34, 77, 106, 0] + GlyphRenderer bbox=[34, 30, 106, 0] + Scatter bbox=[34, 30, 106, 0] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.png index 16b49387ab7..8e77fc4e8c0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12357__should_not_render_size_0_webgl_markers.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.blf index dccf997a0fc..f41283e8afa 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 450, 200] Figure bbox=[0, 0, 150, 200] Canvas bbox=[0, 0, 150, 200] - CartesianFrame bbox=[29, 27, 116, 151] - GlyphRenderer bbox=[87, 34, 0, 137] - Scatter bbox=[87, 34, 0, 137] + CartesianFrame bbox=[29, 25, 116, 153] + GlyphRenderer bbox=[87, 32, 0, 139] + Scatter bbox=[87, 32, 0, 139] LinearAxis bbox=[29, 178, 116, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 200] Canvas bbox=[0, 0, 150, 200] - CartesianFrame bbox=[29, 27, 116, 151] - GlyphRenderer bbox=[87, 34, 0, 137] - Scatter bbox=[87, 34, 0, 137] + CartesianFrame bbox=[29, 25, 116, 153] + GlyphRenderer bbox=[87, 32, 0, 139] + Scatter bbox=[87, 32, 0, 139] LinearAxis bbox=[29, 178, 116, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 116, 25] Figure bbox=[300, 0, 150, 200] Canvas bbox=[0, 0, 150, 200] - CartesianFrame bbox=[29, 27, 116, 151] - GlyphRenderer bbox=[87, 34, 0, 137] - Scatter bbox=[87, 34, 0, 137] + CartesianFrame bbox=[29, 25, 116, 153] + GlyphRenderer bbox=[87, 32, 0, 139] + Scatter bbox=[87, 32, 0, 139] LinearAxis bbox=[29, 178, 116, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.png index fb84c364be4..69136de500c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12361__prevents_correct_rendering_with_vectorized_line_width_==_0.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.blf index 58b78ba9402..b881b23201b 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[26, 27, 169, 251] - GlyphRenderer bbox=[34, 38, 153, 229] - Scatter bbox=[34, 38, 153, 229] + CartesianFrame bbox=[26, 25, 169, 253] + GlyphRenderer bbox=[34, 37, 153, 230] + Scatter bbox=[34, 37, 153, 230] LinearAxis bbox=[26, 278, 169, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[26, 27, 169, 251] - GlyphRenderer bbox=[34, 38, 153, 229] - Scatter bbox=[34, 38, 153, 229] + CartesianFrame bbox=[26, 25, 169, 253] + GlyphRenderer bbox=[34, 37, 153, 230] + Scatter bbox=[34, 37, 153, 230] LinearAxis bbox=[26, 278, 169, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.png index d8bc2d3e8f7..f5677992a9c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12404__doesn't_allow_to_correctly_apply_jitter_transform_with_Int32Array_inputs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12405__doesn't_allow_to_propagate_computed_layouts_in_nested_CSS_layouts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12405__doesn't_allow_to_propagate_computed_layouts_in_nested_CSS_layouts.png index a1b59209edf..53b39b83677 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12405__doesn't_allow_to_propagate_computed_layouts_in_nested_CSS_layouts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12405__doesn't_allow_to_propagate_computed_layouts_in_nested_CSS_layouts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12410__allows_positioning_of_hover_tool_tooltips_outside_the_frame.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12410__allows_positioning_of_hover_tool_tooltips_outside_the_frame.png index d772b38d8a3..fb8b6630b36 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12410__allows_positioning_of_hover_tool_tooltips_outside_the_frame.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12410__allows_positioning_of_hover_tool_tooltips_outside_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.blf index c20a00a36fb..918140ef72f 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 125, 114] - Step bbox=[37, 34, 125, 114] - GlyphRenderer bbox=[49, 45, 126, 115] - Step bbox=[49, 45, 126, 115] - GlyphRenderer bbox=[62, 57, 125, 114] - Step bbox=[62, 57, 125, 114] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 125, 116] + Step bbox=[37, 32, 125, 116] + GlyphRenderer bbox=[49, 44, 126, 115] + Step bbox=[49, 44, 126, 115] + GlyphRenderer bbox=[62, 55, 125, 116] + Step bbox=[62, 55, 125, 116] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 125, 114] - Step bbox=[37, 34, 125, 114] - GlyphRenderer bbox=[49, 45, 126, 115] - Step bbox=[49, 45, 126, 115] - GlyphRenderer bbox=[62, 57, 125, 114] - Step bbox=[62, 57, 125, 114] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 125, 116] + Step bbox=[37, 32, 125, 116] + GlyphRenderer bbox=[49, 44, 126, 115] + Step bbox=[49, 44, 126, 115] + GlyphRenderer bbox=[62, 55, 125, 116] + Step bbox=[62, 55, 125, 116] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.png index 5696f0bb23b..f72363be4ad 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12412__displays_canvas_step_glyph_with_incorrect_alpha.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_layouts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_layouts.png index e6c3151c591..f2d10785872 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_layouts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_layouts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_single_plots.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_single_plots.png index 2afae278af5..3eacd3b6f37 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_single_plots.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12418__doesn't_allow_to_correctly_display_lasso_select_overlay_in_single_plots.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.blf index 3250d916ae4..e25ff87dfda 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] - GlyphRenderer bbox=[37, 50, 150, 205] - Step bbox=[37, 50, 150, 205] - GlyphRenderer bbox=[37, 61, 150, 206] - Step bbox=[37, 61, 150, 206] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] + GlyphRenderer bbox=[37, 48, 150, 207] + Step bbox=[37, 48, 150, 207] + GlyphRenderer bbox=[37, 60, 150, 207] + Step bbox=[37, 60, 150, 207] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] - GlyphRenderer bbox=[37, 50, 150, 205] - Step bbox=[37, 50, 150, 205] - GlyphRenderer bbox=[37, 61, 150, 206] - Step bbox=[37, 61, 150, 206] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] + GlyphRenderer bbox=[37, 48, 150, 207] + Step bbox=[37, 48, 150, 207] + GlyphRenderer bbox=[37, 60, 150, 207] + Step bbox=[37, 60, 150, 207] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] - GlyphRenderer bbox=[37, 50, 150, 205] - Step bbox=[37, 50, 150, 205] - GlyphRenderer bbox=[37, 61, 150, 206] - Step bbox=[37, 61, 150, 206] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] + GlyphRenderer bbox=[37, 48, 150, 207] + Step bbox=[37, 48, 150, 207] + GlyphRenderer bbox=[37, 60, 150, 207] + Step bbox=[37, 60, 150, 207] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.png index 46f7c8d004f..796b99ec3f0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12430__doesn't_correctly_show_selected_indices_of_Step_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12447__make_tooltips_interfere_with_toolbars.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12447__make_tooltips_interfere_with_toolbars.png index faa37a90a63..5aeeb5526aa 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12447__make_tooltips_interfere_with_toolbars.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12447__make_tooltips_interfere_with_toolbars.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12448__doesn't_allow_for_good_rows_and_cols_sizing_defaults_in_GridPlot.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12448__doesn't_allow_for_good_rows_and_cols_sizing_defaults_in_GridPlot.png index cf6e85a2a1b..764c125c49d 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12448__doesn't_allow_for_good_rows_and_cols_sizing_defaults_in_GridPlot.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12448__doesn't_allow_for_good_rows_and_cols_sizing_defaults_in_GridPlot.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12465__doesn't_allow_to_correctly_display_DataTable_in_Tabs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12465__doesn't_allow_to_correctly_display_DataTable_in_Tabs.png index f37659702f5..1cb6e10882d 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12465__doesn't_allow_to_correctly_display_DataTable_in_Tabs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12465__doesn't_allow_to_correctly_display_DataTable_in_Tabs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12479__doesn't_allow_computing_grid_plot_layout_in_nested_layouts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12479__doesn't_allow_computing_grid_plot_layout_in_nested_layouts.png index 97f56f50069..3dda57c2a39 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12479__doesn't_allow_computing_grid_plot_layout_in_nested_layouts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12479__doesn't_allow_computing_grid_plot_layout_in_nested_layouts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12578__doesn't_allow_to_use_proxied_action_tools_on_all_plots.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12578__doesn't_allow_to_use_proxied_action_tools_on_all_plots.png index 47e0039f042..2f7ebfa90a9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12578__doesn't_allow_to_use_proxied_action_tools_on_all_plots.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12578__doesn't_allow_to_use_proxied_action_tools_on_all_plots.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot())).png b/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot())).png index 66d7c35eac3..a4279c7d988 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot())).png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot())).png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot(),_Row())).png b/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot(),_Row())).png index 06d77d39b54..aae1a1f8661 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot(),_Row())).png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(Column(GridPlot(),_Row())).png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(GridPlot,_Row).png b/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(GridPlot,_Row).png index 06d77d39b54..aae1a1f8661 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(GridPlot,_Row).png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12583__doesn't_allow_layout_propagation_in_Column(GridPlot,_Row).png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12584__doesn't_allow_auto-completion_to_work_correctly_in_MultiChoice_widget.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12584__doesn't_allow_auto-completion_to_work_correctly_in_MultiChoice_widget.png index 82a7f00a6b5..724345051e2 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12584__doesn't_allow_auto-completion_to_work_correctly_in_MultiChoice_widget.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12584__doesn't_allow_auto-completion_to_work_correctly_in_MultiChoice_widget.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12585__doesn't_allow_support_for_line_policy=none_with_mode=vline.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12585__doesn't_allow_support_for_line_policy=none_with_mode=vline.png index da74b24f5f1..02e72fe7c9d 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12585__doesn't_allow_support_for_line_policy=none_with_mode=vline.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12585__doesn't_allow_support_for_line_policy=none_with_mode=vline.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12592__allows_to_select_circles_outside_the_selection_geometry.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12592__allows_to_select_circles_outside_the_selection_geometry.png index 44663631833..a95a9d764d4 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12592__allows_to_select_circles_outside_the_selection_geometry.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12592__allows_to_select_circles_outside_the_selection_geometry.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12640__doesn't_allow_layout_computation_for_initially_undisplayed_components.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12640__doesn't_allow_layout_computation_for_initially_undisplayed_components.png index 1d1b7d7c6ec..af66cbac997 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12640__doesn't_allow_layout_computation_for_initially_undisplayed_components.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12640__doesn't_allow_layout_computation_for_initially_undisplayed_components.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12709__doesn't_allow_using_DatePicker_widget_in_complex_layouts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12709__doesn't_allow_using_DatePicker_widget_in_complex_layouts.png index 4ec74f5d5c5..633d0443ea7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12709__doesn't_allow_using_DatePicker_widget_in_complex_layouts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12709__doesn't_allow_using_DatePicker_widget_in_complex_layouts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12718__doesn't_render_Legend_correctly_when_LegendItem.index_is_filtered_out_by_CDSView.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12718__doesn't_render_Legend_correctly_when_LegendItem.index_is_filtered_out_by_CDSView.png index 9bb80eff21f..36ea9478e11 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12718__doesn't_render_Legend_correctly_when_LegendItem.index_is_filtered_out_by_CDSView.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12718__doesn't_render_Legend_correctly_when_LegendItem.index_is_filtered_out_by_CDSView.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.blf index 61a73bfcba6..7a2f16c5bf5 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.png index bc21d42b13c..2663fcac7f8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.blf index 61a73bfcba6..7a2f16c5bf5 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.png index 23ea88e7602..4fb54112451 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_2.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.blf index 61a73bfcba6..7a2f16c5bf5 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Quad bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Quad bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.png index 754de2a8c7e..7865c6875c1 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12735__doesn't_allow_correct_rendering_of_hatch_patterns__with_devicePixelRatio_==_3.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12863__doesn't_allow_GridPlot_with_plots_all_with_sizing_mode='stretch_width'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12863__doesn't_allow_GridPlot_with_plots_all_with_sizing_mode='stretch_width'.png index d3693e510d6..612ab749c26 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12863__doesn't_allow_GridPlot_with_plots_all_with_sizing_mode='stretch_width'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12863__doesn't_allow_GridPlot_with_plots_all_with_sizing_mode='stretch_width'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12880__doesn't_allow_editable_BoxAnnotation_to_respect_frame_bounds.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12880__doesn't_allow_editable_BoxAnnotation_to_respect_frame_bounds.png index 5010f2eaa08..a355fb5d260 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12880__doesn't_allow_editable_BoxAnnotation_to_respect_frame_bounds.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12880__doesn't_allow_editable_BoxAnnotation_to_respect_frame_bounds.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.blf index a28d776183f..0b37aa0be20 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 300, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[36, 27, 109, 101] - GlyphRenderer bbox=[52, 41, 77, 73] - Line bbox=[52, 41, 77, 73] + CartesianFrame bbox=[36, 25, 109, 103] + GlyphRenderer bbox=[52, 40, 77, 73] + Line bbox=[52, 40, 77, 73] LinearAxis bbox=[36, 128, 109, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 109, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[36, 27, 109, 101] - GlyphRenderer bbox=[52, 41, 77, 73] - Line bbox=[52, 41, 77, 73] + CartesianFrame bbox=[36, 25, 109, 103] + GlyphRenderer bbox=[52, 40, 77, 73] + Line bbox=[52, 40, 77, 73] LinearAxis bbox=[36, 128, 109, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 109, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.png index 5b325c07a98..5963d8c0b54 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12913__incorrectly_renders_webgl_lines_with_very_small_angular_separation.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12917__doesn't_allow_BoxAnnotation_to_participate_in_auto-ranging_when_its_edges_are_bound_to_the_frame.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12917__doesn't_allow_BoxAnnotation_to_participate_in_auto-ranging_when_its_edges_are_bound_to_the_frame.png index c4377adbba8..3077c9c5bf8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12917__doesn't_allow_BoxAnnotation_to_participate_in_auto-ranging_when_its_edges_are_bound_to_the_frame.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12917__doesn't_allow_BoxAnnotation_to_participate_in_auto-ranging_when_its_edges_are_bound_to_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12951__doesn't_allow_usage_of_Tooltip_in_description_context.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12951__doesn't_allow_usage_of_Tooltip_in_description_context.png index 495653e930e..afe045cfff2 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12951__doesn't_allow_usage_of_Tooltip_in_description_context.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12951__doesn't_allow_usage_of_Tooltip_in_description_context.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#12994__doesn't_render_patch_for_certain_inputs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#12994__doesn't_render_patch_for_certain_inputs.png index 303f43f541c..63849fef2e1 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#12994__doesn't_render_patch_for_certain_inputs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#12994__doesn't_render_patch_for_certain_inputs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13104__results_in_a_race_condition_in_the_layout_if_lazy_initialize()_takes_time.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13104__results_in_a_race_condition_in_the_layout_if_lazy_initialize()_takes_time.png index 98bbfd3a08b..b5c5e3a4597 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13104__results_in_a_race_condition_in_the_layout_if_lazy_initialize()_takes_time.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13104__results_in_a_race_condition_in_the_layout_if_lazy_initialize()_takes_time.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13112__doesn't_allow_to_render_Text_glyph_when_using_selection_indices.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13112__doesn't_allow_to_render_Text_glyph_when_using_selection_indices.png index ddf4c6a36f8..885c777a1e9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13112__doesn't_allow_to_render_Text_glyph_when_using_selection_indices.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13112__doesn't_allow_to_render_Text_glyph_when_using_selection_indices.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.blf index 5b72533bf74..6232d26213a 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] + CartesianFrame bbox=[29, 25, 166, 153] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] + CartesianFrame bbox=[29, 25, 166, 153] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] + CartesianFrame bbox=[29, 25, 166, 153] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.png index 5b2abe4309d..16dc6ee2d03 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13150__doesn't_allow_correctly_render_GraphRenderer_with_output_backend='webgl'.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13182__doesn't_allow_update_of_legend_when_data_changes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13182__doesn't_allow_update_of_legend_when_data_changes.png index 377090768af..169f8297870 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13182__doesn't_allow_update_of_legend_when_data_changes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13182__doesn't_allow_update_of_legend_when_data_changes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13192__doesn't_to_clear_DatePicker.enabled_dates.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13192__doesn't_to_clear_DatePicker.enabled_dates.png index ccd5adb8b2d..c26e1e91067 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13192__doesn't_to_clear_DatePicker.enabled_dates.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13192__doesn't_to_clear_DatePicker.enabled_dates.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.blf index bee0c2d50f1..ddd41113dfd 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 55] - Line bbox=[37, 34, 150, 55] - GlyphRenderer bbox=[37, 116, 150, 55] - MultiLine bbox=[37, 116, 150, 55] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 56] + Line bbox=[37, 32, 150, 56] + GlyphRenderer bbox=[37, 115, 150, 56] + MultiLine bbox=[37, 115, 150, 56] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 55] - Line bbox=[37, 34, 150, 55] - GlyphRenderer bbox=[37, 116, 150, 55] - MultiLine bbox=[37, 116, 150, 55] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 56] + Line bbox=[37, 32, 150, 56] + GlyphRenderer bbox=[37, 115, 150, 56] + MultiLine bbox=[37, 115, 150, 56] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 55] - Line bbox=[37, 34, 150, 55] - GlyphRenderer bbox=[37, 116, 150, 55] - MultiLine bbox=[37, 116, 150, 55] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 56] + Line bbox=[37, 32, 150, 56] + GlyphRenderer bbox=[37, 115, 150, 56] + MultiLine bbox=[37, 115, 150, 56] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.png index 4dd6fcecf4f..db0bdc3f6a6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__dashed_to_dashdot.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.blf index bee0c2d50f1..ddd41113dfd 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 55] - Line bbox=[37, 34, 150, 55] - GlyphRenderer bbox=[37, 116, 150, 55] - MultiLine bbox=[37, 116, 150, 55] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 56] + Line bbox=[37, 32, 150, 56] + GlyphRenderer bbox=[37, 115, 150, 56] + MultiLine bbox=[37, 115, 150, 56] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 55] - Line bbox=[37, 34, 150, 55] - GlyphRenderer bbox=[37, 116, 150, 55] - MultiLine bbox=[37, 116, 150, 55] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 56] + Line bbox=[37, 32, 150, 56] + GlyphRenderer bbox=[37, 115, 150, 56] + MultiLine bbox=[37, 115, 150, 56] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 55] - Line bbox=[37, 34, 150, 55] - GlyphRenderer bbox=[37, 116, 150, 55] - MultiLine bbox=[37, 116, 150, 55] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 56] + Line bbox=[37, 32, 150, 56] + GlyphRenderer bbox=[37, 115, 150, 56] + MultiLine bbox=[37, 115, 150, 56] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.png index 49cb092c737..9744863edab 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13195__doesn't_render_line_dashes_in_derived_glyphs__solid_to_dashed.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_1.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_1.png index ddfa4d40f4b..ebadf3ffe3c 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_1.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_2.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_2.png index 2686a9a65f9..d4b0e6285c5 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_2.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_2.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_3.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_3.png index 01ecd187673..5702efec2df 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_3.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13252__doesn't_allow_to_correctly_export_GridPlot__with_devicePixelRatio_==_3.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13255__doesn't_allow_to_disable_DatePicker_after_display.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13255__doesn't_allow_to_disable_DatePicker_after_display.png index 263a3510104..e595c687c65 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13255__doesn't_allow_to_disable_DatePicker_after_display.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13255__doesn't_allow_to_disable_DatePicker_after_display.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_horizontal_orientation_and_nrows.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_horizontal_orientation_and_nrows.png index d700d381642..adc9099f432 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_horizontal_orientation_and_nrows.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_horizontal_orientation_and_nrows.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_vertical_orientation_and_ncols.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_vertical_orientation_and_ncols.png index 2fc8dd812b1..0530659c28e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_vertical_orientation_and_ncols.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13262__doesn't_allow_to_correctly_compute_grid_layout_in_Legend_with_uneven_number_of_items__in_vertical_orientation_and_ncols.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13264__doesn't_allow_to_correctly_update_children_in_a_complex_layout.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13264__doesn't_allow_to_correctly_update_children_in_a_complex_layout.png index 34cc214670d..ce368336cba 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13264__doesn't_allow_to_correctly_update_children_in_a_complex_layout.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13264__doesn't_allow_to_correctly_update_children_in_a_complex_layout.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13315__doesn't_allow_Range.start_and_Range.end_updates_to_respect_bounds.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13315__doesn't_allow_Range.start_and_Range.end_updates_to_respect_bounds.png index 5443463ad08..40a54ea53b8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13315__doesn't_allow_Range.start_and_Range.end_updates_to_respect_bounds.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13315__doesn't_allow_Range.start_and_Range.end_updates_to_respect_bounds.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13323__doesn't_allow_to_repaint_plots_in_layouts_when_only_their_inner_layout_bbox_changed.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13323__doesn't_allow_to_repaint_plots_in_layouts_when_only_their_inner_layout_bbox_changed.png index 582f29f2646..12eec6233a4 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13323__doesn't_allow_to_repaint_plots_in_layouts_when_only_their_inner_layout_bbox_changed.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13323__doesn't_allow_to_repaint_plots_in_layouts_when_only_their_inner_layout_bbox_changed.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.blf index 59ffc4e1f2d..20b4e16ad73 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Line bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Line bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Line bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Line bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Line bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Line bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.png index 613e77b146f..d26b6cab87a 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13362__doesn't_correctly_apply_background_and_border_visuals_in_SVG_backend.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13428__doesn't_allow_to_correctly_position_Tooltip_under_'contain__strict'_and_other.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13428__doesn't_allow_to_correctly_position_Tooltip_under_'contain__strict'_and_other.png index 4c8651ac00b..bfb094c44d1 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13428__doesn't_allow_to_correctly_position_Tooltip_under_'contain__strict'_and_other.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13428__doesn't_allow_to_correctly_position_Tooltip_under_'contain__strict'_and_other.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.blf index d223c823279..e1a766d21bd 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.blf @@ -1,21 +1,21 @@ Row bbox=[0, 0, 300, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 27, 125, 101] - GlyphRenderer bbox=[26, 192, 113, 0] - VStrip bbox=[26, 192, 113, 0] - GlyphRenderer bbox=[-31, 32, 0, 91] - HStrip bbox=[-31, 32, 0, 91] + CartesianFrame bbox=[20, 25, 125, 103] + GlyphRenderer bbox=[26, 194, 113, 0] + VStrip bbox=[26, 194, 113, 0] + GlyphRenderer bbox=[-31, 30, 0, 93] + HStrip bbox=[-31, 30, 0, 93] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 27, 20, 101] - Title bbox=[20, 0, 125, 27] + LinearAxis bbox=[0, 25, 20, 103] + Title bbox=[20, 0, 125, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[20, 27, 125, 101] - GlyphRenderer bbox=[26, 192, 113, 0] - VStrip bbox=[26, 192, 113, 0] - GlyphRenderer bbox=[-31, 32, 0, 91] - HStrip bbox=[-31, 32, 0, 91] + CartesianFrame bbox=[20, 25, 125, 103] + GlyphRenderer bbox=[26, 194, 113, 0] + VStrip bbox=[26, 194, 113, 0] + GlyphRenderer bbox=[-31, 30, 0, 93] + HStrip bbox=[-31, 30, 0, 93] LinearAxis bbox=[20, 128, 125, 22] - LinearAxis bbox=[0, 27, 20, 101] - Title bbox=[20, 0, 125, 27] + LinearAxis bbox=[0, 25, 20, 103] + Title bbox=[20, 0, 125, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.png index 541127e94eb..74900e3f350 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13478__doesn't_render_webgl_zero-width_height_vstrip_hstrip_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13566__doesn't_allot_to_recompute_the_layout_when_dimensions_of_Legend_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13566__doesn't_allot_to_recompute_the_layout_when_dimensions_of_Legend_change.png index a53ba43b71a..2cffe2ab589 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13566__doesn't_allot_to_recompute_the_layout_when_dimensions_of_Legend_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13566__doesn't_allot_to_recompute_the_layout_when_dimensions_of_Legend_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13574__doesn't_allow_to_correctly_change_active_menu_item_with_arrows_in_AutocompleteInput.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13574__doesn't_allow_to_correctly_change_active_menu_item_with_arrows_in_AutocompleteInput.png index a4b239a24b2..8e31c6a6803 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13574__doesn't_allow_to_correctly_change_active_menu_item_with_arrows_in_AutocompleteInput.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13574__doesn't_allow_to_correctly_change_active_menu_item_with_arrows_in_AutocompleteInput.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13637__doesn't_allow_using_dict-based_pseudo_structs_in_model_APIs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13637__doesn't_allow_using_dict-based_pseudo_structs_in_model_APIs.png index dc34969393e..aee4ed5eff6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13637__doesn't_allow_using_dict-based_pseudo_structs_in_model_APIs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13637__doesn't_allow_using_dict-based_pseudo_structs_in_model_APIs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.blf index da6f5e97c56..c1ad86f1281 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Image bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Image bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 34, 150, 137] - Image bbox=[37, 34, 150, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 32, 150, 139] + Image bbox=[37, 32, 150, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.png index 320ba73fe90..80ab1b293e3 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13678__doesn't_render_unselected_WebGL_Image_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.blf index ff5fee4058c..d30f212ebea 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.png index 4d6decadfbc..9dcd37b00f4 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.blf index ff5fee4058c..d30f212ebea 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.png index 93b3b963621..1817bd387bf 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_2.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.blf index ff5fee4058c..d30f212ebea 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Line bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Line bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.png index 95ec7a5cdef..01f2c01196e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13692__doesn't_scale_webgl_antialiasing_by_pixel_ratio__with_devicePixelRatio_==_3.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13725__doesn't_allow_DataRange1d_to_respect_min_interval_and_max_interval.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13725__doesn't_allow_DataRange1d_to_respect_min_interval_and_max_interval.png index fa3641fd9ad..1799e709339 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13725__doesn't_allow_DataRange1d_to_respect_min_interval_and_max_interval.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13725__doesn't_allow_DataRange1d_to_respect_min_interval_and_max_interval.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13755__doesn't_allow_to_re-render_when_Button.label_changes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13755__doesn't_allow_to_re-render_when_Button.label_changes.png index cd8975701b9..124bca34c9f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13755__doesn't_allow_to_re-render_when_Button.label_changes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13755__doesn't_allow_to_re-render_when_Button.label_changes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13756__doesn't_correctly_position_Tooltip_when_using_nodes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13756__doesn't_correctly_position_Tooltip_when_using_nodes.png index b32b501da56..4cbbc321c82 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13756__doesn't_correctly_position_Tooltip_when_using_nodes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13756__doesn't_correctly_position_Tooltip_when_using_nodes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13766__doesn't_allow_to_rebuild_Dropdown.menu_on_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13766__doesn't_allow_to_rebuild_Dropdown.menu_on_change.png index 2966ff7fa8c..a3424bc3ece 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13766__doesn't_allow_to_rebuild_Dropdown.menu_on_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13766__doesn't_allow_to_rebuild_Dropdown.menu_on_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13771__doesn't_allow_to_correctly_maintain_projections_in_secondary_glyphs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13771__doesn't_allow_to_correctly_maintain_projections_in_secondary_glyphs.png index 510ef8f8ef4..8adcd7e014f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13771__doesn't_allow_to_correctly_maintain_projections_in_secondary_glyphs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13771__doesn't_allow_to_correctly_maintain_projections_in_secondary_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13787__doesn't_allow_to_render_a_DataTable_in_a_Dialog.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13787__doesn't_allow_to_render_a_DataTable_in_a_Dialog.png index c03f483df86..04aa1284c45 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13787__doesn't_allow_to_render_a_DataTable_in_a_Dialog.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13787__doesn't_allow_to_render_a_DataTable_in_a_Dialog.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13803__doesn't_allow_GraphRenderer_to_utilize_secondary_glyphs.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13803__doesn't_allow_GraphRenderer_to_utilize_secondary_glyphs.png index a420afd1988..5b7d75cf6dd 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13803__doesn't_allow_GraphRenderer_to_utilize_secondary_glyphs.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13803__doesn't_allow_GraphRenderer_to_utilize_secondary_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13804__doesn't_allow_to_update_InputWidget.title.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13804__doesn't_allow_to_update_InputWidget.title.png index 6e0cbf197dd..899692acf63 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13804__doesn't_allow_to_update_InputWidget.title.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13804__doesn't_allow_to_update_InputWidget.title.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13827__doesn't_allow_to_respect_maintain_focus=false_when_zooming.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13827__doesn't_allow_to_respect_maintain_focus=false_when_zooming.png index 34e3a54aa1e..f6f74c9d0a5 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13827__doesn't_allow_to_respect_maintain_focus=false_when_zooming.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13827__doesn't_allow_to_respect_maintain_focus=false_when_zooming.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13895__allows_elements_associated_with_renderers_to_overflow_the_canvas.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13895__allows_elements_associated_with_renderers_to_overflow_the_canvas.png index e816d86e7e6..1c527585c00 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13895__allows_elements_associated_with_renderers_to_overflow_the_canvas.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13895__allows_elements_associated_with_renderers_to_overflow_the_canvas.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13912__doesn't_allow_stacking_Dialog_above_non-floating_UI_elements.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13912__doesn't_allow_stacking_Dialog_above_non-floating_UI_elements.png index 3ad06ce125e..30cd1cdd396 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13912__doesn't_allow_stacking_Dialog_above_non-floating_UI_elements.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13912__doesn't_allow_stacking_Dialog_above_non-floating_UI_elements.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#13923__doesn't_allow_to_rebuild_views_when_Tooltip.contents_changes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#13923__doesn't_allow_to_rebuild_views_when_Tooltip.contents_changes.png index 9d39c2647d5..d02b9338a4f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#13923__doesn't_allow_to_rebuild_views_when_Tooltip.contents_changes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#13923__doesn't_allow_to_rebuild_views_when_Tooltip.contents_changes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_MultiPolygons_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_MultiPolygons_glyph.png index 82a24237cd2..30e6253c2fd 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_MultiPolygons_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_MultiPolygons_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_Patches_glyph.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_Patches_glyph.png index 82a24237cd2..30e6253c2fd 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_Patches_glyph.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14013__doesn't_allow_to_respect_secondary_ranges_when_masking_data_in_Patches_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14068__doesn't_allow_update_of_GridPlot.children.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14068__doesn't_allow_update_of_GridPlot.children.png index f215c767ece..7aaf4ec12f7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14068__doesn't_allow_update_of_GridPlot.children.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14068__doesn't_allow_update_of_GridPlot.children.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14120__doesn't_allow_updates_when_properties_of_ValueOf_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14120__doesn't_allow_updates_when_properties_of_ValueOf_change.png index f4f32970bb9..6b4d8871c55 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14120__doesn't_allow_updates_when_properties_of_ValueOf_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14120__doesn't_allow_updates_when_properties_of_ValueOf_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14153__doesn't_allow_correctly_position_ScaleBar_annotation.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14153__doesn't_allow_correctly_position_ScaleBar_annotation.png index cbdc68c6069..87036386177 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14153__doesn't_allow_correctly_position_ScaleBar_annotation.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14153__doesn't_allow_correctly_position_ScaleBar_annotation.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14168__doesn't_allow_to_add_multiple_TileRenderer_instances_to_a_plot.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14168__doesn't_allow_to_add_multiple_TileRenderer_instances_to_a_plot.png index 932541ce25d..3232e5f7ebc 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14168__doesn't_allow_to_add_multiple_TileRenderer_instances_to_a_plot.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14168__doesn't_allow_to_add_multiple_TileRenderer_instances_to_a_plot.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14207__has_zoom_in_when_visibility_changes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14207__has_zoom_in_when_visibility_changes.png index d8c54038d8c..e34c4ab253d 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14207__has_zoom_in_when_visibility_changes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14207__has_zoom_in_when_visibility_changes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14246__doesn't_allow_to_correctly_update_Toolbar_after_changing_Tool_visiblity.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14246__doesn't_allow_to_correctly_update_Toolbar_after_changing_Tool_visiblity.png index 737b9c4f84d..4bebcd0c2ec 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14246__doesn't_allow_to_correctly_update_Toolbar_after_changing_Tool_visiblity.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14246__doesn't_allow_to_correctly_update_Toolbar_after_changing_Tool_visiblity.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14265__doesn't_allow_to_correctly_drawImage_in_SVG_backend_with_transform_and_clip-path.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14265__doesn't_allow_to_correctly_drawImage_in_SVG_backend_with_transform_and_clip-path.png index 23c56d7db91..7c8cd74048b 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14265__doesn't_allow_to_correctly_drawImage_in_SVG_backend_with_transform_and_clip-path.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14265__doesn't_allow_to_correctly_drawImage_in_SVG_backend_with_transform_and_clip-path.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14280__triggers_JS_error_when_adding_tile_without_defining_range.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14280__triggers_JS_error_when_adding_tile_without_defining_range.png index fb6d959b4e8..12d7463eaf9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14280__triggers_JS_error_when_adding_tile_without_defining_range.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14280__triggers_JS_error_when_adding_tile_without_defining_range.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14310__doesn't_allow_Axis_background_to_have_a_hatch_pattern.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14310__doesn't_allow_Axis_background_to_have_a_hatch_pattern.png index 90105438f0d..8abc67d62b7 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14310__doesn't_allow_Axis_background_to_have_a_hatch_pattern.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14310__doesn't_allow_Axis_background_to_have_a_hatch_pattern.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14422__doesn't_allow_to_correctly_export_image_with_Legend_annotation_with_scaling.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14422__doesn't_allow_to_correctly_export_image_with_Legend_annotation_with_scaling.png index 5021edc0d47..fc2b81699aa 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14422__doesn't_allow_to_correctly_export_image_with_Legend_annotation_with_scaling.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14422__doesn't_allow_to_correctly_export_image_with_Legend_annotation_with_scaling.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14442__doesn't_allow_to_correctly_render_Legend_with_inactive_items.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14442__doesn't_allow_to_correctly_render_Legend_with_inactive_items.png index 5ef86cf7046..16ce23db773 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14442__doesn't_allow_to_correctly_render_Legend_with_inactive_items.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14442__doesn't_allow_to_correctly_render_Legend_with_inactive_items.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above.png index 0b24383343f..3271982e71b 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above_with_multiple_legends.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above_with_multiple_legends.png index 081b781d96c..d245b479dea 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above_with_multiple_legends.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__above_with_multiple_legends.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below.png index 5411eebd5d0..3f32ce20644 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below_with_multiple_legends.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below_with_multiple_legends.png index e1a0ecb3346..5fa8119788e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below_with_multiple_legends.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__below_with_multiple_legends.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left.png index 0fe799604e2..d56b7708ef6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left_with_multiple_legends.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left_with_multiple_legends.png index 5f2380c9bcd..dd829868de5 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left_with_multiple_legends.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__left_with_multiple_legends.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right.png index 9679afa4c17..2c83b57c916 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right_with_multiple_legends.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right_with_multiple_legends.png index 93a766506a3..759436894a9 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right_with_multiple_legends.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_correctly_position_Legend_annotation_in_side_panel__right_with_multiple_legends.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_keep_toolbar_visible_if_renderers_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_keep_toolbar_visible_if_renderers_change.png index 4e116ccc67a..c51ebe13d04 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_keep_toolbar_visible_if_renderers_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14451__doesn't_allow_to_keep_toolbar_visible_if_renderers_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14458__doesn't_allow_to_update_layout_children_without_removing_them_from_DOM.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14458__doesn't_allow_to_update_layout_children_without_removing_them_from_DOM.png index 6d4ac52bfa9..e2111b900c2 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14458__doesn't_allow_to_update_layout_children_without_removing_them_from_DOM.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14458__doesn't_allow_to_update_layout_children_without_removing_them_from_DOM.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14503__doesn't_keep_picked_datetime_value_after_closing.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14503__doesn't_keep_picked_datetime_value_after_closing.png index 8dce87bb630..47d0f435304 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14503__doesn't_keep_picked_datetime_value_after_closing.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14503__doesn't_keep_picked_datetime_value_after_closing.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14520__doesn't_allow_BoxAnnotation_to_support_categorical_coordinates.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14520__doesn't_allow_BoxAnnotation_to_support_categorical_coordinates.png index 31a295c5fd5..04635e00279 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14520__doesn't_allow_BoxAnnotation_to_support_categorical_coordinates.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14520__doesn't_allow_BoxAnnotation_to_support_categorical_coordinates.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14536__doesn't_allow_a_responsive_overflowing_child_layout_to_fit_into_the_parent_flex_container.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14536__doesn't_allow_a_responsive_overflowing_child_layout_to_fit_into_the_parent_flex_container.png index 977e4709677..43aacde01c2 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14536__doesn't_allow_a_responsive_overflowing_child_layout_to_fit_into_the_parent_flex_container.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14536__doesn't_allow_a_responsive_overflowing_child_layout_to_fit_into_the_parent_flex_container.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14549__doesn't_prevent_hover_action_upon_bbox_change.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#14549__doesn't_prevent_hover_action_upon_bbox_change.blf new file mode 100644 index 00000000000..e31ee1c04e7 --- /dev/null +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#14549__doesn't_prevent_hover_action_upon_bbox_change.blf @@ -0,0 +1,10 @@ +Row bbox=[0, 0, 550, 250] + Div bbox=[5, 5, 23, 240] + Figure bbox=[33, 0, 516, 250] + Canvas bbox=[0, 0, 516, 250] + CartesianFrame bbox=[26, 25, 485, 203] + GlyphRenderer bbox=[-73, 34, 441, 185] + Line bbox=[-73, 34, 441, 185] + LinearAxis bbox=[26, 228, 485, 22] + LinearAxis bbox=[0, 25, 26, 203] + Title bbox=[26, 0, 485, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14549__doesn't_prevent_hover_action_upon_bbox_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14549__doesn't_prevent_hover_action_upon_bbox_change.png new file mode 100644 index 00000000000..1b8317069de Binary files /dev/null and b/bokehjs/test/baselines/linux/Bug__in_issue_#14549__doesn't_prevent_hover_action_upon_bbox_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#14602__doesn't_allow_to_correctly_export_plots_with_inner_plots.png b/bokehjs/test/baselines/linux/Bug__in_issue_#14602__doesn't_allow_to_correctly_export_plots_with_inner_plots.png index 888bc933cb6..698f3ff36ec 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#14602__doesn't_allow_to_correctly_export_plots_with_inner_plots.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#14602__doesn't_allow_to_correctly_export_plots_with_inner_plots.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4403__doesn't_allow_layout_resize_when_parent_element's_size_changed.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4403__doesn't_allow_layout_resize_when_parent_element's_size_changed.png index 67f09ca9b88..fad808abb09 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4403__doesn't_allow_layout_resize_when_parent_element's_size_changed.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4403__doesn't_allow_layout_resize_when_parent_element's_size_changed.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4817__doesn't_correctly_align_widgets_after_adding_text_to_a_widget.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4817__doesn't_correctly_align_widgets_after_adding_text_to_a_widget.png index 3a1074123c0..5f674781c51 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4817__doesn't_correctly_align_widgets_after_adding_text_to_a_widget.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4817__doesn't_correctly_align_widgets_after_adding_text_to_a_widget.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_canvas_glyphs_efficiently.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_canvas_glyphs_efficiently.png index 2743504b48b..9a4f13d0010 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_canvas_glyphs_efficiently.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_canvas_glyphs_efficiently.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_svg_glyphs_efficiently.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_svg_glyphs_efficiently.png index 944ff628f7d..b6579d30410 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_svg_glyphs_efficiently.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_svg_glyphs_efficiently.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_webgl_glyphs_efficiently.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_webgl_glyphs_efficiently.png index 2f46394b2c7..6a36dbb6fa6 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_webgl_glyphs_efficiently.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4888__doesn't_allow_to_render_many_(N=50)_webgl_glyphs_efficiently.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_grid_plots.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_grid_plots.png index 20f01872cde..3e2b97ff982 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_grid_plots.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_grid_plots.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_layouts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_layouts.png index 20f01872cde..3e2b97ff982 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_layouts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#4930__allows_to_cut_tooltips_short_in_layouts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.blf index 35cf79fa75e..50e681e19ea 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] - GlyphRenderer bbox=[52, 72, 127, 91] - Scatter bbox=[52, 72, 127, 91] + CartesianFrame bbox=[36, 25, 159, 153] + GlyphRenderer bbox=[52, 71, 127, 92] + Scatter bbox=[52, 71, 127, 92] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] - GlyphRenderer bbox=[52, 72, 127, 91] - Scatter bbox=[52, 72, 127, 91] + CartesianFrame bbox=[36, 25, 159, 153] + GlyphRenderer bbox=[52, 71, 127, 92] + Scatter bbox=[52, 71, 127, 92] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[36, 27, 159, 151] - GlyphRenderer bbox=[52, 72, 127, 91] - Scatter bbox=[52, 72, 127, 91] + CartesianFrame bbox=[36, 25, 159, 153] + GlyphRenderer bbox=[52, 71, 127, 92] + Scatter bbox=[52, 71, 127, 92] LinearAxis bbox=[36, 178, 159, 22] - LinearAxis bbox=[0, 27, 36, 151] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 153] + Title bbox=[36, 0, 159, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.png b/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.png index 2df636f5909..02207e2c427 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#5046__prevents_webgl_rendering_of_streaming_markers.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#5829__allows_PolySelectTool's_overlay_to_stay_the_same_at_all_zoom_levels.png b/bokehjs/test/baselines/linux/Bug__in_issue_#5829__allows_PolySelectTool's_overlay_to_stay_the_same_at_all_zoom_levels.png index 65288915a0d..126786be7da 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#5829__allows_PolySelectTool's_overlay_to_stay_the_same_at_all_zoom_levels.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#5829__allows_PolySelectTool's_overlay_to_stay_the_same_at_all_zoom_levels.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#589__disallows_updating_legend_when_glyphs_change.png b/bokehjs/test/baselines/linux/Bug__in_issue_#589__disallows_updating_legend_when_glyphs_change.png index 390efe00704..efd5b839c29 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#589__disallows_updating_legend_when_glyphs_change.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#589__disallows_updating_legend_when_glyphs_change.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.blf index 0dfb678b8ae..7e6f24a9a42 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.blf @@ -1,23 +1,23 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 103, 0, 0] - Scatter bbox=[37, 103, 0, 0] - GlyphRenderer bbox=[187, 103, 0, 0] - Scatter bbox=[187, 103, 0, 0] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 102, 0, 0] + Scatter bbox=[37, 102, 0, 0] + GlyphRenderer bbox=[187, 102, 0, 0] + Scatter bbox=[187, 102, 0, 0] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Legend bbox=[63, 37, 98, 65] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Legend bbox=[63, 35, 98, 65] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[37, 103, 0, 0] - Scatter bbox=[37, 103, 0, 0] - GlyphRenderer bbox=[187, 103, 0, 0] - Scatter bbox=[187, 103, 0, 0] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[37, 102, 0, 0] + Scatter bbox=[37, 102, 0, 0] + GlyphRenderer bbox=[187, 102, 0, 0] + Scatter bbox=[187, 102, 0, 0] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Legend bbox=[63, 37, 98, 65] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Legend bbox=[63, 35, 98, 65] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.png b/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.png index 464fe20d2d3..9f98a369c4a 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#6775__disallows_correct_rendering_of_legends_with_SVG_backend.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.blf index e57a4cb4c34..fa6bfc03561 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[111, 103, 33, 0] - Scatter bbox=[111, 103, 33, 0] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[111, 102, 33, 0] + Scatter bbox=[111, 102, 33, 0] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[83, 103, 34, 0] - Scatter bbox=[83, 103, 34, 0] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[83, 102, 34, 0] + Scatter bbox=[83, 102, 34, 0] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[138, 103, 33, 0] - Scatter bbox=[138, 103, 33, 0] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[138, 102, 33, 0] + Scatter bbox=[138, 102, 33, 0] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.png b/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.png index f68fc15180e..706bbdd4c96 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#7671__doesn't_to_refresh_tooltips_when_plot_is_updated.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8180__does_not_allow_propagation_of_UI_events_through_RangeTool's_overlay.png b/bokehjs/test/baselines/linux/Bug__in_issue_#8180__does_not_allow_propagation_of_UI_events_through_RangeTool's_overlay.png index 08f770bc35c..dada69fdb59 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#8180__does_not_allow_propagation_of_UI_events_through_RangeTool's_overlay.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#8180__does_not_allow_propagation_of_UI_events_through_RangeTool's_overlay.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8346__should_support_updating_line.png b/bokehjs/test/baselines/linux/Bug__in_issue_#8346__should_support_updating_line.png index ce218beba85..90efa21c2b8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#8346__should_support_updating_line.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#8346__should_support_updating_line.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.blf b/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.blf index 568c96bbb23..20e4723da19 100644 --- a/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.blf +++ b/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.blf @@ -1,21 +1,21 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 151] - GlyphRenderer bbox=[28, 34, 64, 137] - Scatter bbox=[28, 34, 64, 137] - GlyphRenderer bbox=[123, 34, 64, 137] - Scatter bbox=[123, 34, 64, 137] + CartesianFrame bbox=[20, 25, 175, 153] + GlyphRenderer bbox=[28, 32, 64, 139] + Scatter bbox=[28, 32, 64, 139] + GlyphRenderer bbox=[123, 32, 64, 139] + Scatter bbox=[123, 32, 64, 139] LinearAxis bbox=[20, 178, 175, 22] - LinearAxis bbox=[0, 27, 20, 151] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 153] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 151] - GlyphRenderer bbox=[28, 34, 64, 137] - Scatter bbox=[28, 34, 64, 137] - GlyphRenderer bbox=[123, 34, 64, 137] - Scatter bbox=[123, 34, 64, 137] + CartesianFrame bbox=[20, 25, 175, 153] + GlyphRenderer bbox=[28, 32, 64, 139] + Scatter bbox=[28, 32, 64, 139] + GlyphRenderer bbox=[123, 32, 64, 139] + Scatter bbox=[123, 32, 64, 139] LinearAxis bbox=[20, 178, 175, 22] - LinearAxis bbox=[0, 27, 20, 151] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 153] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.png b/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.png index 89b311782c5..232b08450eb 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#8446__disallows_correct_rendering_circle_scatter_plots_with_SVG_backend.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8469__makes_child_layout_update_invalidate_and_re-render_entire_layout.png b/bokehjs/test/baselines/linux/Bug__in_issue_#8469__makes_child_layout_update_invalidate_and_re-render_entire_layout.png index 87df5dd7171..53fa367a1d0 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#8469__makes_child_layout_update_invalidate_and_re-render_entire_layout.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#8469__makes_child_layout_update_invalidate_and_re-render_entire_layout.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8766__doesn't_allow_activation_of_proxied_box_zoom_tools.png b/bokehjs/test/baselines/linux/Bug__in_issue_#8766__doesn't_allow_activation_of_proxied_box_zoom_tools.png index c409ca54a46..de85237bb87 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#8766__doesn't_allow_activation_of_proxied_box_zoom_tools.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#8766__doesn't_allow_activation_of_proxied_box_zoom_tools.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#8890__doesn't_allow_to_render_newly_added_Span_annotation.png b/bokehjs/test/baselines/linux/Bug__in_issue_#8890__doesn't_allow_to_render_newly_added_Span_annotation.png index 2aa70522665..da6e55a59a8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#8890__doesn't_allow_to_render_newly_added_Span_annotation.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#8890__doesn't_allow_to_render_newly_added_Span_annotation.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9047__does_not_allow_to_interact_with_multiple_RangeTools.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9047__does_not_allow_to_interact_with_multiple_RangeTools.png index f48d6793f19..05237d9eb23 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9047__does_not_allow_to_interact_with_multiple_RangeTools.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9047__does_not_allow_to_interact_with_multiple_RangeTools.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9113__prevents_layout_update_when_adding_new_toggle_group_buttons.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9113__prevents_layout_update_when_adding_new_toggle_group_buttons.png index db9e32479b1..dfa10608357 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9113__prevents_layout_update_when_adding_new_toggle_group_buttons.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9113__prevents_layout_update_when_adding_new_toggle_group_buttons.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9133__doesn't_allow_to_set_fixed_size_of_Tabs_layout.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9133__doesn't_allow_to_set_fixed_size_of_Tabs_layout.png index a55f6240576..2bbaa84fe7f 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9133__doesn't_allow_to_set_fixed_size_of_Tabs_layout.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9133__doesn't_allow_to_set_fixed_size_of_Tabs_layout.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9208__makes_a_'stretch_width'_and_large_height_child_overflow_x_when_y_scrollbar_is_present.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9208__makes_a_'stretch_width'_and_large_height_child_overflow_x_when_y_scrollbar_is_present.png index 38c4a5c85d6..e5680905fe4 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9208__makes_a_'stretch_width'_and_large_height_child_overflow_x_when_y_scrollbar_is_present.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9208__makes_a_'stretch_width'_and_large_height_child_overflow_x_when_y_scrollbar_is_present.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices.png index 9e41bd950d1..8365b58c1f1 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices_after_selection.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices_after_selection.png index 4b61a70814b..43f55252716 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices_after_selection.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9230__makes_GlyphRenderer_use_incorrect_subset_indices_after_selection.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9381__does_not_allow_RangeTool_to_work_on_axes_with_inverted_ranges.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9381__does_not_allow_RangeTool_to_work_on_axes_with_inverted_ranges.png index 3203c854fe8..5811e0e031e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9381__does_not_allow_RangeTool_to_work_on_axes_with_inverted_ranges.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9381__does_not_allow_RangeTool_to_work_on_axes_with_inverted_ranges.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9448__prevents_correct_text_rendering_with_lazily_loaded_fonts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9448__prevents_correct_text_rendering_with_lazily_loaded_fonts.png index fec15b48108..7bc92ac2da1 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9448__prevents_correct_text_rendering_with_lazily_loaded_fonts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9448__prevents_correct_text_rendering_with_lazily_loaded_fonts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9522__disallows_arrow_to_be_positioned_correctly_in_stacked_layouts.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9522__disallows_arrow_to_be_positioned_correctly_in_stacked_layouts.png index 9f4b31bde48..d0855d98dcd 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9522__disallows_arrow_to_be_positioned_correctly_in_stacked_layouts.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9522__disallows_arrow_to_be_positioned_correctly_in_stacked_layouts.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9703__disallows_ImageURL_glyph_to_set_anchor_and_angle_at_the_same_time.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9703__disallows_ImageURL_glyph_to_set_anchor_and_angle_at_the_same_time.png index 20388e39d29..2f95745c543 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9703__disallows_ImageURL_glyph_to_set_anchor_and_angle_at_the_same_time.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9703__disallows_ImageURL_glyph_to_set_anchor_and_angle_at_the_same_time.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9724__makes_automatic_padding_in_data_ranges_inconsistent.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9724__makes_automatic_padding_in_data_ranges_inconsistent.png index b495ffa12b8..7ec61e990f8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9724__makes_automatic_padding_in_data_ranges_inconsistent.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9724__makes_automatic_padding_in_data_ranges_inconsistent.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9763__incorrectly_merges_dissimilar_tools_of_the_same_type.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9763__incorrectly_merges_dissimilar_tools_of_the_same_type.png index 577e352983c..5704535aefd 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9763__incorrectly_merges_dissimilar_tools_of_the_same_type.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9763__incorrectly_merges_dissimilar_tools_of_the_same_type.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9764__prevents_display_of_MultiChoice_placeholder.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9764__prevents_display_of_MultiChoice_placeholder.png index 5674ab25c3e..ed4d003d615 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9764__prevents_display_of_MultiChoice_placeholder.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9764__prevents_display_of_MultiChoice_placeholder.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_fill_color_==_null.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_fill_color_==_null.png index d1d62081feb..e73bae369eb 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_fill_color_==_null.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_fill_color_==_null.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_line_color_==_null.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_line_color_==_null.png index 6c1b7f37527..30b8486b4b2 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_line_color_==_null.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9877__disallows_BoxAnnotation_to_respect_line_color_==_null.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9879__disallows_to_change_FactorRange_to_a_lower_dimension_with_a_different_number_of_factors.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9879__disallows_to_change_FactorRange_to_a_lower_dimension_with_a_different_number_of_factors.png index e592e393522..91a45b9e1a8 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9879__disallows_to_change_FactorRange_to_a_lower_dimension_with_a_different_number_of_factors.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9879__disallows_to_change_FactorRange_to_a_lower_dimension_with_a_different_number_of_factors.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_#9992__doesn't_correctly_display_layout_when_visibility_changes.png b/bokehjs/test/baselines/linux/Bug__in_issue_#9992__doesn't_correctly_display_layout_when_visibility_changes.png index e72fbdc7812..59e67940121 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_#9992__doesn't_correctly_display_layout_when_visibility_changes.png and b/bokehjs/test/baselines/linux/Bug__in_issue_#9992__doesn't_correctly_display_layout_when_visibility_changes.png differ diff --git a/bokehjs/test/baselines/linux/Bug__in_issue_holoviews#4589__disallows_rendering_two_glyphs_sharing_a_source_and_view.png b/bokehjs/test/baselines/linux/Bug__in_issue_holoviews#4589__disallows_rendering_two_glyphs_sharing_a_source_and_view.png index 9a006c0f5c6..825a53f463e 100644 Binary files a/bokehjs/test/baselines/linux/Bug__in_issue_holoviews#4589__disallows_rendering_two_glyphs_sharing_a_source_and_view.png and b/bokehjs/test/baselines/linux/Bug__in_issue_holoviews#4589__disallows_rendering_two_glyphs_sharing_a_source_and_view.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png index e77dcd3b173..61e5ebb6460 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png index 02cefb4fe83..7d262014c68 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png index a1f1a201118..9776073d6d1 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png index 04af03f7c3b..261b338f276 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png index 37f82fb686b..97df35ea727 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png index 39acff6716c..5f309b269c4 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png index 37f82fb686b..97df35ea727 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png index 39acff6716c..5f309b269c4 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png index 37f82fb686b..97df35ea727 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png index 60ccd4522fc..173182ffd0e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png index 4ca67c96948..e1c71f81ce8 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png index 9beb42862f3..f98d4c500bb 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png index a44ed7e15c9..713da5824c4 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png index 926df5f502a..49fa52e5730 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png index 1baa6905dfd..8cb90f09576 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png index 926df5f502a..49fa52e5730 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png index 1baa6905dfd..8cb90f09576 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png index 926df5f502a..49fa52e5730 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png index 08f192e82bc..ca6774e58af 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png index 914628a95ac..a1394bc16dc 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png index 0ff79ee6ec3..2dd31c2f590 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png index 3941c00bdf8..8a7017734c9 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png index f0eecde2e6e..69a0981e840 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png index 6f379d653d8..899f83187ce 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png index 2b805063d01..74da9603ae4 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png index 6f379d653d8..899f83187ce 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png index 2b805063d01..74da9603ae4 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png index ce682e2b5b3..7ef998281d2 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png index 22ba0afcf74..6167b41a76c 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png index 451c1687fdd..9d2fbadfedd 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png index be7f7710fd6..54508b913a9 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png index 2e63f82fb0e..4371931c13e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png index e4660f93768..e892cf5ca2e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png index 016f1cabe96..164abcef368 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png index e4660f93768..e892cf5ca2e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png index 016f1cabe96..164abcef368 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png index 5003eba35d5..5e2f5124fc3 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png index 7140a654d5a..3c36ff1bf58 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png index c13d622059f..37b3da150b7 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png index 392beb5bd33..cd86d63772a 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png index b9afeda567e..f6205600f4a 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png index 5003eba35d5..5e2f5124fc3 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png index 5003eba35d5..5e2f5124fc3 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png index 857ea6f996a..afa1a21475c 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png index 857ea6f996a..afa1a21475c 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png index e857e9cb778..fd1b5fb9e1a 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png index c6da58f9da9..e07047c5e2d 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png index f65611fd3a5..66022586daa 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png index 745b30debd5..e2db84fc2e3 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png index 4c1673b1ff2..b2de3b21b36 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png index e857e9cb778..fd1b5fb9e1a 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png index e857e9cb778..fd1b5fb9e1a 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png index bc637feb482..1f166d4faf9 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png index bc637feb482..1f166d4faf9 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png index 6152ab5c936..71040cc4a6e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png index 593e69ac37d..26800e4c2e4 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png index 91005ac613f..29a27031151 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png index bad8f95c38c..08202eaa229 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png index 1a9381c98af..9706f115676 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png index 6152ab5c936..71040cc4a6e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png index 6152ab5c936..71040cc4a6e 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png index 849b574c7f4..72bb1e7d287 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png index 849b574c7f4..72bb1e7d287 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png index f33993f74a8..841a7605c4d 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png index 5b5dd55f81e..b5189964fa1 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png index 3b461185d66..dbfdb7782b5 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png index ab9c0ca9c03..c3992d8f8a7 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png index 0893fdd2531..546a45dc37a 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png index f33993f74a8..841a7605c4d 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png index f33993f74a8..841a7605c4d 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png index e2bf9aacff0..77fb4911ac0 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png index e2bf9aacff0..77fb4911ac0 100644 Binary files a/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/CategoricalAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_factors__with_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.blf index 6ec6bce5432..df59c63d3b2 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 102, 475, 93] - GlyphRenderer bbox=[42, 106, 431, 85] - Circle bbox=[42, 106, 431, 85] - LinearAxis bbox=[20, 80, 475, 22] - ColorBar bbox=[20, 0, 475, 80] - LinearAxis bbox=[30, 29, 455, 16] - Title bbox=[30, 10, 455, 19] - LinearAxis bbox=[0, 102, 20, 93] + CartesianFrame bbox=[20, 100, 475, 95] + GlyphRenderer bbox=[42, 104, 431, 87] + Circle bbox=[42, 104, 431, 87] + LinearAxis bbox=[20, 78, 475, 22] + ColorBar bbox=[20, 0, 475, 78] + LinearAxis bbox=[30, 27, 455, 16] + Title bbox=[30, 10, 455, 17] + LinearAxis bbox=[0, 100, 20, 95] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.png index ace338c8cd6..32a17e5829b 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.blf index 0e671fc4b00..9195a1110f9 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 127, 475, 68] - GlyphRenderer bbox=[42, 130, 431, 62] - Circle bbox=[42, 130, 431, 62] - LinearAxis bbox=[20, 105, 475, 22] - ColorBar bbox=[20, 0, 475, 105] - LinearAxis bbox=[30, 29, 455, 16] - Title bbox=[30, 10, 455, 19] - LinearAxis bbox=[0, 127, 20, 68] + CartesianFrame bbox=[20, 125, 475, 70] + GlyphRenderer bbox=[42, 128, 431, 64] + Circle bbox=[42, 128, 431, 64] + LinearAxis bbox=[20, 103, 475, 22] + ColorBar bbox=[20, 0, 475, 103] + LinearAxis bbox=[30, 27, 455, 16] + Title bbox=[30, 10, 455, 17] + LinearAxis bbox=[0, 125, 20, 70] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.png index ad16b888a71..05c90fdf2df 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_horizontal_(auto)_orientation_with_height=50px.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.blf index 10fbdfaa3a9..8ce87d68489 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.blf @@ -5,6 +5,6 @@ Figure bbox=[0, 0, 500, 200] Circle bbox=[42, 144, 431, 49] LinearAxis bbox=[20, 120, 475, 22] ColorBar bbox=[20, 0, 475, 120] - LinearAxis bbox=[249, 10, 20, 100] - Title bbox=[30, 10, 19, 100] + LinearAxis bbox=[247, 10, 20, 100] + Title bbox=[30, 10, 17, 100] LinearAxis bbox=[0, 142, 20, 53] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.png index db58481b83d..a0de9b5166e 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_above_frame_in_vertical_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.blf index 4c549ddcce0..8d2639e7ecc 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 5, 475, 93] - GlyphRenderer bbox=[42, 9, 431, 85] - Circle bbox=[42, 9, 431, 85] - LinearAxis bbox=[20, 98, 475, 22] - ColorBar bbox=[20, 120, 475, 80] + CartesianFrame bbox=[20, 5, 475, 95] + GlyphRenderer bbox=[42, 9, 431, 87] + Circle bbox=[42, 9, 431, 87] + LinearAxis bbox=[20, 100, 475, 22] + ColorBar bbox=[20, 122, 475, 78] LinearAxis bbox=[30, 174, 455, 16] - Title bbox=[30, 130, 455, 19] - LinearAxis bbox=[0, 5, 20, 93] + Title bbox=[30, 132, 455, 17] + LinearAxis bbox=[0, 5, 20, 95] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.png index 8ed6c749231..b0bcdde827c 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.blf index 1e41caa9c20..892fd7f855f 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 5, 475, 68] - GlyphRenderer bbox=[42, 8, 431, 62] - Circle bbox=[42, 8, 431, 62] - LinearAxis bbox=[20, 73, 475, 22] - ColorBar bbox=[20, 95, 475, 105] + CartesianFrame bbox=[20, 5, 475, 70] + GlyphRenderer bbox=[42, 8, 431, 64] + Circle bbox=[42, 8, 431, 64] + LinearAxis bbox=[20, 75, 475, 22] + ColorBar bbox=[20, 97, 475, 103] LinearAxis bbox=[30, 174, 455, 16] - Title bbox=[30, 105, 455, 19] - LinearAxis bbox=[0, 5, 20, 68] + Title bbox=[30, 107, 455, 17] + LinearAxis bbox=[0, 5, 20, 70] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.png index dd406aa022b..66ed1212877 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_horizontal_(auto)_orientation_with_height=50px.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.blf index c37a454429a..23d3f69e71e 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.blf @@ -5,6 +5,6 @@ Figure bbox=[0, 0, 500, 200] Circle bbox=[42, 7, 431, 49] LinearAxis bbox=[20, 58, 475, 22] ColorBar bbox=[20, 80, 475, 120] - LinearAxis bbox=[249, 90, 20, 100] - Title bbox=[30, 90, 19, 100] + LinearAxis bbox=[247, 90, 20, 100] + Title bbox=[30, 90, 17, 100] LinearAxis bbox=[0, 5, 20, 53] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.png index 1e15abae4b0..31c3e2e100b 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_below_frame_in_vertical_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.blf index d73e2aa277d..90da34cd6a0 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.blf @@ -6,5 +6,5 @@ Figure bbox=[0, 0, 200, 500] LinearAxis bbox=[146, 478, 49, 22] LinearAxis bbox=[120, 5, 26, 473] ColorBar bbox=[0, 5, 120, 473] - LinearAxis bbox=[10, 234, 100, 16] - Title bbox=[10, 15, 100, 19] + LinearAxis bbox=[10, 232, 100, 16] + Title bbox=[10, 15, 100, 17] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.png index 58d20d1a911..a185df79176 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_horizontal_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.blf index 2bb577633cd..b097dbffecb 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 200, 500] Canvas bbox=[0, 0, 200, 500] - CartesianFrame bbox=[110, 5, 85, 473] - GlyphRenderer bbox=[114, 27, 77, 429] - Circle bbox=[114, 27, 77, 429] - LinearAxis bbox=[110, 478, 85, 22] - LinearAxis bbox=[84, 5, 26, 473] - ColorBar bbox=[0, 5, 84, 473] - LinearAxis bbox=[29, 15, 20, 453] - Title bbox=[10, 15, 19, 453] + CartesianFrame bbox=[108, 5, 87, 473] + GlyphRenderer bbox=[112, 27, 79, 429] + Circle bbox=[112, 27, 79, 429] + LinearAxis bbox=[108, 478, 87, 22] + LinearAxis bbox=[82, 5, 26, 473] + ColorBar bbox=[0, 5, 82, 473] + LinearAxis bbox=[27, 15, 20, 453] + Title bbox=[10, 15, 17, 453] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.png index 4e6bd1b790d..8343ca14290 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf index 26e4496e209..f767f13b6b7 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 200, 500] Canvas bbox=[0, 0, 200, 500] - CartesianFrame bbox=[135, 5, 60, 473] - GlyphRenderer bbox=[138, 27, 54, 429] - Circle bbox=[138, 27, 54, 429] - LinearAxis bbox=[135, 478, 60, 22] - LinearAxis bbox=[109, 5, 26, 473] - ColorBar bbox=[0, 5, 109, 473] - LinearAxis bbox=[29, 15, 20, 453] - Title bbox=[10, 15, 19, 453] + CartesianFrame bbox=[133, 5, 62, 473] + GlyphRenderer bbox=[136, 27, 56, 429] + Circle bbox=[136, 27, 56, 429] + LinearAxis bbox=[133, 478, 62, 22] + LinearAxis bbox=[107, 5, 26, 473] + ColorBar bbox=[0, 5, 107, 473] + LinearAxis bbox=[27, 15, 20, 453] + Title bbox=[10, 15, 17, 453] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.png index 8d32621556b..7b7c1de2e53 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_left_of_frame_in_vertical_(auto)_orientation_with_width=50px.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.blf index c6a24ebc680..4ae4bbcc615 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.blf @@ -6,5 +6,5 @@ Figure bbox=[0, 0, 200, 500] LinearAxis bbox=[5, 478, 49, 22] LinearAxis bbox=[54, 5, 26, 473] ColorBar bbox=[80, 5, 120, 473] - LinearAxis bbox=[90, 234, 100, 16] - Title bbox=[90, 15, 100, 19] + LinearAxis bbox=[90, 232, 100, 16] + Title bbox=[90, 15, 100, 17] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.png index 745f40d4fd3..bb963f982d6 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_horizontal_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.blf index 6b65e395d10..682b9597a5b 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 200, 500] Canvas bbox=[0, 0, 200, 500] - CartesianFrame bbox=[5, 5, 85, 473] - GlyphRenderer bbox=[9, 27, 77, 429] - Circle bbox=[9, 27, 77, 429] - LinearAxis bbox=[5, 478, 85, 22] - LinearAxis bbox=[90, 5, 26, 473] - ColorBar bbox=[116, 5, 84, 473] + CartesianFrame bbox=[5, 5, 87, 473] + GlyphRenderer bbox=[9, 27, 79, 429] + Circle bbox=[9, 27, 79, 429] + LinearAxis bbox=[5, 478, 87, 22] + LinearAxis bbox=[92, 5, 26, 473] + ColorBar bbox=[118, 5, 82, 473] LinearAxis bbox=[170, 15, 20, 453] - Title bbox=[126, 15, 19, 453] + Title bbox=[128, 15, 17, 453] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.png index be947d532be..0d990280df4 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf index 606abf8fd57..632036734fe 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 200, 500] Canvas bbox=[0, 0, 200, 500] - CartesianFrame bbox=[5, 5, 60, 473] - GlyphRenderer bbox=[8, 27, 54, 429] - Circle bbox=[8, 27, 54, 429] - LinearAxis bbox=[5, 478, 60, 22] - LinearAxis bbox=[65, 5, 26, 473] - ColorBar bbox=[91, 5, 109, 473] + CartesianFrame bbox=[5, 5, 62, 473] + GlyphRenderer bbox=[8, 27, 56, 429] + Circle bbox=[8, 27, 56, 429] + LinearAxis bbox=[5, 478, 62, 22] + LinearAxis bbox=[67, 5, 26, 473] + ColorBar bbox=[93, 5, 107, 473] LinearAxis bbox=[170, 15, 20, 453] - Title bbox=[101, 15, 19, 453] + Title bbox=[103, 15, 17, 453] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.png index 30422066671..acb79fd534b 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_allow_to_be_placed_right_of_frame_in_vertical_(auto)_orientation_with_width=50px.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.blf index 07a6b0b22ff..9376cb4ff03 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 5, 475, 88] - GlyphRenderer bbox=[42, 9, 431, 80] - Circle bbox=[42, 9, 431, 80] - LinearAxis bbox=[20, 93, 475, 22] - ColorBar bbox=[20, 115, 475, 85] + CartesianFrame bbox=[20, 5, 475, 90] + GlyphRenderer bbox=[42, 9, 431, 82] + Circle bbox=[42, 9, 431, 82] + LinearAxis bbox=[20, 95, 475, 22] + ColorBar bbox=[20, 117, 475, 83] CategoricalAxis bbox=[30, 169, 455, 21] - Title bbox=[30, 125, 455, 19] - LinearAxis bbox=[0, 5, 20, 88] + Title bbox=[30, 127, 455, 17] + LinearAxis bbox=[0, 5, 20, 90] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.png index 1fb14d96c15..7ada717457b 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_CategoricalColorMapper.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.blf index 4c549ddcce0..8d2639e7ecc 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 5, 475, 93] - GlyphRenderer bbox=[42, 9, 431, 85] - Circle bbox=[42, 9, 431, 85] - LinearAxis bbox=[20, 98, 475, 22] - ColorBar bbox=[20, 120, 475, 80] + CartesianFrame bbox=[20, 5, 475, 95] + GlyphRenderer bbox=[42, 9, 431, 87] + Circle bbox=[42, 9, 431, 87] + LinearAxis bbox=[20, 100, 475, 22] + ColorBar bbox=[20, 122, 475, 78] LinearAxis bbox=[30, 174, 455, 16] - Title bbox=[30, 130, 455, 19] - LinearAxis bbox=[0, 5, 20, 93] + Title bbox=[30, 132, 455, 17] + LinearAxis bbox=[0, 5, 20, 95] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.png index 41e1e15724e..7c7c0edcc70 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_EqHistColorMapper.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.blf index 4c549ddcce0..8d2639e7ecc 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 5, 475, 93] - GlyphRenderer bbox=[42, 9, 431, 85] - Circle bbox=[42, 9, 431, 85] - LinearAxis bbox=[20, 98, 475, 22] - ColorBar bbox=[20, 120, 475, 80] + CartesianFrame bbox=[20, 5, 475, 95] + GlyphRenderer bbox=[42, 9, 431, 87] + Circle bbox=[42, 9, 431, 87] + LinearAxis bbox=[20, 100, 475, 22] + ColorBar bbox=[20, 122, 475, 78] LinearAxis bbox=[30, 174, 455, 16] - Title bbox=[30, 130, 455, 19] - LinearAxis bbox=[0, 5, 20, 93] + Title bbox=[30, 132, 455, 17] + LinearAxis bbox=[0, 5, 20, 95] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.png index 8ed6c749231..b0bcdde827c 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LinearColorMapper.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.blf index 5265fceea2f..83bc63217ec 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 5, 475, 90] - GlyphRenderer bbox=[42, 9, 431, 82] - Circle bbox=[42, 9, 431, 82] - LinearAxis bbox=[20, 95, 475, 22] - ColorBar bbox=[20, 117, 475, 83] + CartesianFrame bbox=[20, 5, 475, 92] + GlyphRenderer bbox=[42, 9, 431, 84] + Circle bbox=[42, 9, 431, 84] + LinearAxis bbox=[20, 97, 475, 22] + ColorBar bbox=[20, 119, 475, 81] LogAxis bbox=[30, 171, 455, 19] - Title bbox=[30, 127, 455, 19] - LinearAxis bbox=[0, 5, 20, 90] + Title bbox=[30, 129, 455, 17] + LinearAxis bbox=[0, 5, 20, 92] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.png index 3650741e3ee..4a908dedf41 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_LogColorMapper.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.blf index 58e1e09ec38..cf40d4ce155 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.blf @@ -1,10 +1,10 @@ Figure bbox=[0, 0, 500, 200] Canvas bbox=[0, 0, 500, 200] - CartesianFrame bbox=[20, 124, 475, 71] - GlyphRenderer bbox=[42, 127, 431, 65] - Circle bbox=[42, 127, 431, 65] - LinearAxis bbox=[20, 102, 475, 22] - ColorBar bbox=[20, 0, 475, 102] - LinearAxis bbox=[30, 51, 455, 16] - Title bbox=[30, 10, 455, 41] - LinearAxis bbox=[0, 124, 20, 71] + CartesianFrame bbox=[20, 122, 475, 73] + GlyphRenderer bbox=[42, 125, 431, 67] + Circle bbox=[42, 125, 431, 67] + LinearAxis bbox=[20, 100, 475, 22] + ColorBar bbox=[20, 0, 475, 100] + LinearAxis bbox=[30, 49, 455, 16] + Title bbox=[30, 10, 455, 39] + LinearAxis bbox=[0, 122, 20, 73] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.png index 03fef519e9d..7bae7207081 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_TeX_title.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.blf index a8854bc487b..88e7f2de4cf 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.blf @@ -1,41 +1,41 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 150, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LogAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 300, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 450, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.png index d98f6e68711..dbb2d11c580 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__high_only.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.blf index a8854bc487b..88e7f2de4cf 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.blf @@ -1,41 +1,41 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 150, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LogAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 300, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 450, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.png index 6daee904faf..bf4e3529de9 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_and_high.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.blf index a8854bc487b..88e7f2de4cf 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.blf @@ -1,41 +1,41 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 150, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LogAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 300, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 450, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.png index 5bd56f2484c..7adc26264cd 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__low_only.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.blf index a8854bc487b..88e7f2de4cf 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.blf @@ -1,41 +1,41 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 150, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LogAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 300, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] Figure bbox=[0, 450, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 43] - GlyphRenderer bbox=[48, 27, 235, 0] - Scatter bbox=[48, 27, 235, 0] - LinearAxis bbox=[36, 48, 259, 22] - ColorBar bbox=[36, 70, 259, 80] + CartesianFrame bbox=[36, 5, 259, 45] + GlyphRenderer bbox=[48, 28, 235, 0] + Scatter bbox=[48, 28, 235, 0] + LinearAxis bbox=[36, 50, 259, 22] + ColorBar bbox=[36, 72, 259, 78] LinearAxis bbox=[46, 124, 239, 16] - Title bbox=[46, 80, 239, 19] - LinearAxis bbox=[0, 5, 36, 43] + Title bbox=[46, 82, 239, 17] + LinearAxis bbox=[0, 5, 36, 45] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.png index d254983af75..ae17a073263 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__neither.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.blf index a51172a1d0c..dd2f3570fc8 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.blf @@ -1,41 +1,41 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LinearAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] Figure bbox=[0, 150, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LogAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] Figure bbox=[0, 300, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LinearAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] Figure bbox=[0, 450, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LinearAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.png index f426e2ffb31..34b8e3660bb 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__out_of_bounds.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.blf index 85228936c17..5ee8286d9b4 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.blf @@ -1,19 +1,19 @@ Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[36, 5, 359, 53] - GlyphRenderer bbox=[52, 32, 327, 0] - Scatter bbox=[52, 32, 327, 0] - LinearAxis bbox=[36, 58, 359, 22] - ColorBar bbox=[36, 80, 359, 80] - LinearAxis bbox=[46, 134, 339, 16] - Title bbox=[46, 90, 339, 19] - ColorBar bbox=[36, 160, 359, 80] - LinearAxis bbox=[46, 214, 339, 16] - Title bbox=[46, 170, 339, 19] - ColorBar bbox=[36, 240, 359, 80] - LinearAxis bbox=[46, 294, 339, 16] - Title bbox=[46, 250, 339, 19] - ColorBar bbox=[36, 320, 359, 80] + CartesianFrame bbox=[36, 5, 359, 61] + GlyphRenderer bbox=[52, 36, 327, 0] + Scatter bbox=[52, 36, 327, 0] + LinearAxis bbox=[36, 66, 359, 22] + ColorBar bbox=[36, 88, 359, 78] + LinearAxis bbox=[46, 140, 339, 16] + Title bbox=[46, 98, 339, 17] + ColorBar bbox=[36, 166, 359, 78] + LinearAxis bbox=[46, 218, 339, 16] + Title bbox=[46, 176, 339, 17] + ColorBar bbox=[36, 244, 359, 78] + LinearAxis bbox=[46, 296, 339, 16] + Title bbox=[46, 254, 339, 17] + ColorBar bbox=[36, 322, 359, 78] LinearAxis bbox=[46, 374, 339, 16] - Title bbox=[46, 330, 339, 19] - LinearAxis bbox=[0, 5, 36, 53] + Title bbox=[46, 332, 339, 17] + LinearAxis bbox=[0, 5, 36, 61] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.png index 52789a812a7..956ac98be62 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_EqHist.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.blf index 76397bfa8bc..c010b399736 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.blf @@ -1,19 +1,19 @@ Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 5, 44, 373] - GlyphRenderer bbox=[48, 22, 0, 339] - Scatter bbox=[48, 22, 0, 339] - LinearAxis bbox=[26, 378, 44, 22] + CartesianFrame bbox=[26, 5, 52, 373] + GlyphRenderer bbox=[52, 22, 0, 339] + Scatter bbox=[52, 22, 0, 339] + LinearAxis bbox=[26, 378, 52, 22] LinearAxis bbox=[0, 5, 26, 373] - ColorBar bbox=[70, 5, 84, 373] - LinearAxis bbox=[124, 15, 20, 353] - Title bbox=[80, 15, 19, 353] - ColorBar bbox=[154, 5, 84, 373] - LinearAxis bbox=[208, 15, 20, 353] - Title bbox=[164, 15, 19, 353] - ColorBar bbox=[238, 5, 84, 373] - LinearAxis bbox=[292, 15, 20, 353] - Title bbox=[248, 15, 19, 353] - ColorBar bbox=[322, 5, 78, 373] + ColorBar bbox=[78, 5, 82, 373] + LinearAxis bbox=[130, 15, 20, 353] + Title bbox=[88, 15, 17, 353] + ColorBar bbox=[160, 5, 82, 373] + LinearAxis bbox=[212, 15, 20, 353] + Title bbox=[170, 15, 17, 353] + ColorBar bbox=[242, 5, 82, 373] + LinearAxis bbox=[294, 15, 20, 353] + Title bbox=[252, 15, 17, 353] + ColorBar bbox=[324, 5, 76, 373] LinearAxis bbox=[376, 15, 14, 353] - Title bbox=[332, 15, 19, 353] + Title bbox=[334, 15, 17, 353] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.png index c1ab373a0a2..b83d9b7f949 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__update_Linear.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.blf index a51172a1d0c..dd2f3570fc8 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.blf @@ -1,41 +1,41 @@ Column bbox=[0, 0, 300, 600] Figure bbox=[0, 0, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LinearAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] Figure bbox=[0, 150, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LogAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] Figure bbox=[0, 300, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LinearAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] Figure bbox=[0, 450, 300, 150] Canvas bbox=[0, 0, 300, 150] - CartesianFrame bbox=[36, 5, 259, 59] - GlyphRenderer bbox=[48, 35, 235, 0] - Scatter bbox=[48, 35, 235, 0] - LinearAxis bbox=[36, 64, 259, 22] - ColorBar bbox=[36, 86, 259, 64] + CartesianFrame bbox=[36, 5, 259, 61] + GlyphRenderer bbox=[48, 36, 235, 0] + Scatter bbox=[48, 36, 235, 0] + LinearAxis bbox=[36, 66, 259, 22] + ColorBar bbox=[36, 88, 259, 62] LinearAxis bbox=[46, 140, 239, 0] - Title bbox=[46, 96, 239, 19] - LinearAxis bbox=[0, 5, 36, 59] + Title bbox=[46, 98, 239, 17] + LinearAxis bbox=[0, 5, 36, 61] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.png index f426e2ffb31..34b8e3660bb 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_display_cutoffs__wrong_way_round.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.blf index 35cc3109f9f..b64c8cea654 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.blf @@ -5,36 +5,36 @@ Figure bbox=[0, 0, 600, 600] Scatter bbox=[55, 31, 514, 521] LinearAxis bbox=[29, 578, 566, 22] LinearAxis bbox=[0, 5, 29, 573] - ColorBar bbox=[44, 483, 140, 80] + ColorBar bbox=[44, 485, 140, 78] LinearAxis bbox=[54, 537, 120, 16] - Title bbox=[54, 493, 120, 19] - ColorBar bbox=[242, 483, 140, 80] + Title bbox=[54, 495, 120, 17] + ColorBar bbox=[242, 485, 140, 78] LinearAxis bbox=[252, 537, 120, 16] - Title bbox=[252, 493, 120, 19] - ColorBar bbox=[440, 483, 140, 80] + Title bbox=[252, 495, 120, 17] + ColorBar bbox=[440, 485, 140, 78] LinearAxis bbox=[450, 537, 120, 16] - Title bbox=[450, 493, 120, 19] - ColorBar bbox=[44, 20, 140, 80] - LinearAxis bbox=[54, 74, 120, 16] - Title bbox=[54, 30, 120, 19] - ColorBar bbox=[242, 20, 140, 80] - LinearAxis bbox=[252, 74, 120, 16] - Title bbox=[252, 30, 120, 19] - ColorBar bbox=[440, 20, 140, 80] - LinearAxis bbox=[450, 74, 120, 16] - Title bbox=[450, 30, 120, 19] - ColorBar bbox=[44, 252, 140, 80] - LinearAxis bbox=[54, 306, 120, 16] - Title bbox=[54, 262, 120, 19] - ColorBar bbox=[242, 252, 140, 80] - LinearAxis bbox=[252, 306, 120, 16] - Title bbox=[252, 262, 120, 19] - ColorBar bbox=[440, 252, 140, 80] - LinearAxis bbox=[450, 306, 120, 16] - Title bbox=[450, 262, 120, 19] - ColorBar bbox=[104, 373, 140, 80] + Title bbox=[450, 495, 120, 17] + ColorBar bbox=[44, 20, 140, 78] + LinearAxis bbox=[54, 72, 120, 16] + Title bbox=[54, 30, 120, 17] + ColorBar bbox=[242, 20, 140, 78] + LinearAxis bbox=[252, 72, 120, 16] + Title bbox=[252, 30, 120, 17] + ColorBar bbox=[440, 20, 140, 78] + LinearAxis bbox=[450, 72, 120, 16] + Title bbox=[450, 30, 120, 17] + ColorBar bbox=[44, 253, 140, 78] + LinearAxis bbox=[54, 305, 120, 16] + Title bbox=[54, 263, 120, 17] + ColorBar bbox=[242, 253, 140, 78] + LinearAxis bbox=[252, 305, 120, 16] + Title bbox=[252, 263, 120, 17] + ColorBar bbox=[440, 253, 140, 78] + LinearAxis bbox=[450, 305, 120, 16] + Title bbox=[450, 263, 120, 17] + ColorBar bbox=[104, 375, 140, 78] LinearAxis bbox=[114, 427, 120, 16] - Title bbox=[114, 383, 120, 19] - ColorBar bbox=[104, 148, 275, 80] + Title bbox=[114, 385, 120, 17] + ColorBar bbox=[104, 150, 275, 78] LinearAxis bbox=[114, 202, 255, 16] - Title bbox=[114, 158, 255, 19] + Title bbox=[114, 160, 255, 17] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.png index e2b7472398d..18b771b82f2 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_horizontal_orientation_and_positioning_within_the_center_panel.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.blf index cc9fabbec01..297fa019635 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.blf @@ -1,39 +1,39 @@ Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[197, 182, 206, 236] - GlyphRenderer bbox=[206, 199, 188, 208] - Scatter bbox=[206, 199, 188, 208] - GlyphRenderer bbox=[206, 193, 188, 195] - Scatter bbox=[206, 193, 188, 195] - GlyphRenderer bbox=[206, 193, 188, 195] - Line bbox=[206, 193, 188, 195] - GlyphRenderer bbox=[206, 200, 188, 172] - Scatter bbox=[206, 200, 188, 172] - LinearAxis bbox=[197, 160, 206, 22] - ColorBar bbox=[197, 80, 206, 80] - LinearAxis bbox=[207, 109, 186, 16] - Title bbox=[207, 90, 186, 19] - ColorBar bbox=[197, 0, 206, 80] - LinearAxis bbox=[243, 29, 150, 16] - Title bbox=[243, 10, 150, 19] - LinearAxis bbox=[197, 418, 206, 22] - ColorBar bbox=[197, 440, 206, 80] - LinearAxis bbox=[207, 494, 186, 16] - Title bbox=[207, 450, 186, 19] - ColorBar bbox=[197, 520, 206, 80] - LinearAxis bbox=[243, 574, 150, 16] - Title bbox=[243, 530, 150, 19] - LinearAxis bbox=[168, 182, 29, 236] - ColorBar bbox=[84, 182, 84, 236] - LinearAxis bbox=[113, 192, 20, 216] - Title bbox=[94, 192, 19, 216] - ColorBar bbox=[0, 182, 84, 236] - LinearAxis bbox=[29, 192, 20, 150] - Title bbox=[10, 192, 19, 150] - LinearAxis bbox=[403, 182, 29, 236] - ColorBar bbox=[432, 182, 84, 236] - LinearAxis bbox=[486, 192, 20, 216] - Title bbox=[442, 192, 19, 216] - ColorBar bbox=[516, 182, 84, 236] - LinearAxis bbox=[570, 192, 20, 150] - Title bbox=[526, 192, 19, 150] + CartesianFrame bbox=[193, 178, 214, 244] + GlyphRenderer bbox=[203, 195, 194, 216] + Scatter bbox=[203, 195, 194, 216] + GlyphRenderer bbox=[203, 189, 194, 202] + Scatter bbox=[203, 189, 194, 202] + GlyphRenderer bbox=[203, 189, 194, 202] + Line bbox=[203, 189, 194, 202] + GlyphRenderer bbox=[203, 197, 194, 177] + Scatter bbox=[203, 197, 194, 177] + LinearAxis bbox=[193, 156, 214, 22] + ColorBar bbox=[193, 78, 214, 78] + LinearAxis bbox=[203, 105, 194, 16] + Title bbox=[203, 88, 194, 17] + ColorBar bbox=[193, 0, 214, 78] + LinearAxis bbox=[247, 27, 150, 16] + Title bbox=[247, 10, 150, 17] + LinearAxis bbox=[193, 422, 214, 22] + ColorBar bbox=[193, 444, 214, 78] + LinearAxis bbox=[203, 496, 194, 16] + Title bbox=[203, 454, 194, 17] + ColorBar bbox=[193, 522, 214, 78] + LinearAxis bbox=[247, 574, 150, 16] + Title bbox=[247, 532, 150, 17] + LinearAxis bbox=[164, 178, 29, 244] + ColorBar bbox=[82, 178, 82, 244] + LinearAxis bbox=[109, 188, 20, 224] + Title bbox=[92, 188, 17, 224] + ColorBar bbox=[0, 178, 82, 244] + LinearAxis bbox=[27, 188, 20, 150] + Title bbox=[10, 188, 17, 150] + LinearAxis bbox=[407, 178, 29, 244] + ColorBar bbox=[436, 178, 82, 244] + LinearAxis bbox=[488, 188, 20, 224] + Title bbox=[446, 188, 17, 224] + ColorBar bbox=[518, 178, 82, 244] + LinearAxis bbox=[570, 188, 20, 150] + Title bbox=[528, 188, 17, 150] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.png index b18ab23166d..fb5c3785f78 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_combinations_of_locations_and_orientations.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.blf index fc91f211522..0dd32bd3d03 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.blf @@ -1,19 +1,19 @@ Figure bbox=[0, 0, 300, 600] Canvas bbox=[0, 0, 300, 600] - CartesianFrame bbox=[29, 320, 266, 258] - GlyphRenderer bbox=[41, 332, 242, 234] - Scatter bbox=[41, 332, 242, 234] - ColorBar bbox=[29, 240, 266, 80] - LinearAxis bbox=[39, 269, 100, 16] - Title bbox=[39, 250, 100, 19] - ColorBar bbox=[29, 160, 266, 80] - LinearAxis bbox=[112, 189, 100, 16] - Title bbox=[112, 170, 100, 19] - ColorBar bbox=[29, 80, 266, 80] - LinearAxis bbox=[185, 109, 100, 16] - Title bbox=[185, 90, 100, 19] - ColorBar bbox=[29, 0, 266, 80] - LinearAxis bbox=[74, 29, 100, 16] - Title bbox=[74, 10, 100, 19] + CartesianFrame bbox=[29, 312, 266, 266] + GlyphRenderer bbox=[41, 324, 242, 242] + Scatter bbox=[41, 324, 242, 242] + ColorBar bbox=[29, 234, 266, 78] + LinearAxis bbox=[39, 261, 100, 16] + Title bbox=[39, 244, 100, 17] + ColorBar bbox=[29, 156, 266, 78] + LinearAxis bbox=[112, 183, 100, 16] + Title bbox=[112, 166, 100, 17] + ColorBar bbox=[29, 78, 266, 78] + LinearAxis bbox=[185, 105, 100, 16] + Title bbox=[185, 88, 100, 17] + ColorBar bbox=[29, 0, 266, 78] + LinearAxis bbox=[74, 27, 100, 16] + Title bbox=[74, 10, 100, 17] LinearAxis bbox=[29, 578, 266, 22] - LinearAxis bbox=[0, 320, 29, 258] + LinearAxis bbox=[0, 312, 29, 266] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.png index 5a73c90ce05..4b1c1be0e9c 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__above_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.blf index d61589942a1..1215b3d8b80 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.blf @@ -1,19 +1,19 @@ Figure bbox=[0, 0, 300, 600] Canvas bbox=[0, 0, 300, 600] - CartesianFrame bbox=[29, 5, 266, 253] - GlyphRenderer bbox=[41, 17, 242, 230] - Scatter bbox=[41, 17, 242, 230] - LinearAxis bbox=[29, 258, 266, 22] - ColorBar bbox=[29, 280, 266, 80] - LinearAxis bbox=[39, 334, 100, 16] - Title bbox=[39, 290, 100, 19] - ColorBar bbox=[29, 360, 266, 80] - LinearAxis bbox=[112, 414, 100, 16] - Title bbox=[112, 370, 100, 19] - ColorBar bbox=[29, 440, 266, 80] - LinearAxis bbox=[185, 494, 100, 16] - Title bbox=[185, 450, 100, 19] - ColorBar bbox=[29, 520, 266, 80] + CartesianFrame bbox=[29, 5, 266, 261] + GlyphRenderer bbox=[41, 17, 242, 237] + Scatter bbox=[41, 17, 242, 237] + LinearAxis bbox=[29, 266, 266, 22] + ColorBar bbox=[29, 288, 266, 78] + LinearAxis bbox=[39, 340, 100, 16] + Title bbox=[39, 298, 100, 17] + ColorBar bbox=[29, 366, 266, 78] + LinearAxis bbox=[112, 418, 100, 16] + Title bbox=[112, 376, 100, 17] + ColorBar bbox=[29, 444, 266, 78] + LinearAxis bbox=[185, 496, 100, 16] + Title bbox=[185, 454, 100, 17] + ColorBar bbox=[29, 522, 266, 78] LinearAxis bbox=[74, 574, 100, 16] - Title bbox=[74, 530, 100, 19] - LinearAxis bbox=[0, 5, 29, 253] + Title bbox=[74, 532, 100, 17] + LinearAxis bbox=[0, 5, 29, 261] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.png index 255b1ae779e..aeddf4e2906 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__below_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.blf index f39de5fb92b..1d5ecaa9344 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.blf @@ -1,19 +1,19 @@ Figure bbox=[0, 0, 600, 300] Canvas bbox=[0, 0, 600, 300] - CartesianFrame bbox=[377, 5, 218, 273] - GlyphRenderer bbox=[387, 17, 198, 249] - Scatter bbox=[387, 17, 198, 249] - LinearAxis bbox=[377, 278, 218, 22] - LinearAxis bbox=[348, 5, 29, 273] - ColorBar bbox=[261, 5, 87, 273] - LinearAxis bbox=[290, 15, 23, 100] - Title bbox=[271, 15, 19, 100] - ColorBar bbox=[174, 5, 87, 273] - LinearAxis bbox=[203, 92, 23, 100] - Title bbox=[184, 92, 19, 100] - ColorBar bbox=[87, 5, 87, 273] - LinearAxis bbox=[116, 168, 23, 100] - Title bbox=[97, 168, 19, 100] - ColorBar bbox=[0, 5, 87, 273] - LinearAxis bbox=[29, 133, 23, 100] - Title bbox=[10, 133, 19, 100] + CartesianFrame bbox=[369, 5, 226, 273] + GlyphRenderer bbox=[379, 17, 206, 249] + Scatter bbox=[379, 17, 206, 249] + LinearAxis bbox=[369, 278, 226, 22] + LinearAxis bbox=[340, 5, 29, 273] + ColorBar bbox=[255, 5, 85, 273] + LinearAxis bbox=[282, 15, 23, 100] + Title bbox=[265, 15, 17, 100] + ColorBar bbox=[170, 5, 85, 273] + LinearAxis bbox=[197, 92, 23, 100] + Title bbox=[180, 92, 17, 100] + ColorBar bbox=[85, 5, 85, 273] + LinearAxis bbox=[112, 168, 23, 100] + Title bbox=[95, 168, 17, 100] + ColorBar bbox=[0, 5, 85, 273] + LinearAxis bbox=[27, 133, 23, 100] + Title bbox=[10, 133, 17, 100] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.png index 593117cfce9..e19c44ac0cf 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__left_of_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.blf index 21e8ea9a19e..f760edaf863 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.blf @@ -1,19 +1,19 @@ Figure bbox=[0, 0, 600, 300] Canvas bbox=[0, 0, 600, 300] - CartesianFrame bbox=[29, 5, 223, 273] - GlyphRenderer bbox=[39, 17, 203, 249] - Scatter bbox=[39, 17, 203, 249] - LinearAxis bbox=[29, 278, 223, 22] + CartesianFrame bbox=[29, 5, 231, 273] + GlyphRenderer bbox=[40, 17, 210, 249] + Scatter bbox=[40, 17, 210, 249] + LinearAxis bbox=[29, 278, 231, 22] LinearAxis bbox=[0, 5, 29, 273] - ColorBar bbox=[252, 5, 87, 273] - LinearAxis bbox=[306, 15, 23, 100] - Title bbox=[262, 15, 19, 100] - ColorBar bbox=[339, 5, 87, 273] - LinearAxis bbox=[393, 92, 23, 100] - Title bbox=[349, 92, 19, 100] - ColorBar bbox=[426, 5, 87, 273] - LinearAxis bbox=[480, 168, 23, 100] - Title bbox=[436, 168, 19, 100] - ColorBar bbox=[513, 5, 87, 273] + ColorBar bbox=[260, 5, 85, 273] + LinearAxis bbox=[312, 15, 23, 100] + Title bbox=[270, 15, 17, 100] + ColorBar bbox=[345, 5, 85, 273] + LinearAxis bbox=[397, 92, 23, 100] + Title bbox=[355, 92, 17, 100] + ColorBar bbox=[430, 5, 85, 273] + LinearAxis bbox=[482, 168, 23, 100] + Title bbox=[440, 168, 17, 100] + ColorBar bbox=[515, 5, 85, 273] LinearAxis bbox=[567, 133, 23, 100] - Title bbox=[523, 133, 19, 100] + Title bbox=[525, 133, 17, 100] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.png index 0ecb77292a6..189ad5bf93b 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_various_locations_within_side_panels__right_of_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.blf b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.blf index 6c1c0b59435..c6f7a19f9c5 100644 --- a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.blf +++ b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.blf @@ -5,36 +5,36 @@ Figure bbox=[0, 0, 600, 600] Scatter bbox=[55, 31, 514, 521] LinearAxis bbox=[29, 578, 566, 22] LinearAxis bbox=[0, 5, 29, 573] - ColorBar bbox=[44, 423, 87, 140] - LinearAxis bbox=[98, 433, 23, 120] - Title bbox=[54, 433, 19, 120] - ColorBar bbox=[269, 423, 87, 140] - LinearAxis bbox=[323, 433, 23, 120] - Title bbox=[279, 433, 19, 120] - ColorBar bbox=[493, 423, 87, 140] + ColorBar bbox=[44, 423, 85, 140] + LinearAxis bbox=[96, 433, 23, 120] + Title bbox=[54, 433, 17, 120] + ColorBar bbox=[270, 423, 85, 140] + LinearAxis bbox=[322, 433, 23, 120] + Title bbox=[280, 433, 17, 120] + ColorBar bbox=[495, 423, 85, 140] LinearAxis bbox=[547, 433, 23, 120] - Title bbox=[503, 433, 19, 120] - ColorBar bbox=[44, 20, 87, 140] - LinearAxis bbox=[98, 30, 23, 120] - Title bbox=[54, 30, 19, 120] - ColorBar bbox=[269, 20, 87, 140] - LinearAxis bbox=[323, 30, 23, 120] - Title bbox=[279, 30, 19, 120] - ColorBar bbox=[493, 20, 87, 140] + Title bbox=[505, 433, 17, 120] + ColorBar bbox=[44, 20, 85, 140] + LinearAxis bbox=[96, 30, 23, 120] + Title bbox=[54, 30, 17, 120] + ColorBar bbox=[270, 20, 85, 140] + LinearAxis bbox=[322, 30, 23, 120] + Title bbox=[280, 30, 17, 120] + ColorBar bbox=[495, 20, 85, 140] LinearAxis bbox=[547, 30, 23, 120] - Title bbox=[503, 30, 19, 120] - ColorBar bbox=[44, 222, 87, 140] - LinearAxis bbox=[98, 232, 23, 120] - Title bbox=[54, 232, 19, 120] - ColorBar bbox=[269, 222, 87, 140] - LinearAxis bbox=[323, 232, 23, 120] - Title bbox=[279, 232, 19, 120] - ColorBar bbox=[493, 222, 87, 140] + Title bbox=[505, 30, 17, 120] + ColorBar bbox=[44, 222, 85, 140] + LinearAxis bbox=[96, 232, 23, 120] + Title bbox=[54, 232, 17, 120] + ColorBar bbox=[270, 222, 85, 140] + LinearAxis bbox=[322, 232, 23, 120] + Title bbox=[280, 232, 17, 120] + ColorBar bbox=[495, 222, 85, 140] LinearAxis bbox=[547, 232, 23, 120] - Title bbox=[503, 232, 19, 120] - ColorBar bbox=[154, 363, 87, 140] - LinearAxis bbox=[208, 373, 23, 120] - Title bbox=[164, 373, 19, 120] - ColorBar bbox=[379, 228, 87, 275] - LinearAxis bbox=[433, 238, 23, 255] - Title bbox=[389, 238, 19, 255] + Title bbox=[505, 232, 17, 120] + ColorBar bbox=[154, 363, 85, 140] + LinearAxis bbox=[206, 373, 23, 120] + Title bbox=[164, 373, 17, 120] + ColorBar bbox=[379, 228, 85, 275] + LinearAxis bbox=[431, 238, 23, 255] + Title bbox=[389, 238, 17, 255] diff --git a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.png b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.png index fae11b07874..43a719cbecc 100644 Binary files a/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.png and b/bokehjs/test/baselines/linux/ColorBar_annotation__should_support_vertical_orientation_and_positioning_within_the_center_panel.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_gaussian_distributed_data.png b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_gaussian_distributed_data.png index 1afa1fb7515..5c6d43a7b32 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_gaussian_distributed_data.png and b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_gaussian_distributed_data.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_pipeline_data.png b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_pipeline_data.png index 7a13d1a6325..c7baa22caba 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_pipeline_data.png and b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_pipeline_data.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_cells_data.png b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_cells_data.png index 1c698392188..d47f963fd81 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_cells_data.png and b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_cells_data.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_squares_data.png b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_squares_data.png index 8733ac8036a..0a9cac85a33 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_squares_data.png and b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_sparse_squares_data.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_uniformly_distributed_data.png b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_uniformly_distributed_data.png index 23fde940f1b..102bb761398 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_uniformly_distributed_data.png and b/bokehjs/test/baselines/linux/Color_mapping__with_histogram_equalization__should_support_uniformly_distributed_data.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work.png b/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work.png index 5f4ae36dce1..08bb8ee5600 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work.png and b/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_panning.png b/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_panning.png index 001c9b72a56..ac56f93efeb 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_panning.png and b/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_panning.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_selection.png b/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_selection.png index 21378c0cbbe..231055bdef6 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_selection.png and b/bokehjs/test/baselines/linux/Color_mapping__with_multiple_domains__should_work_after_selection.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.blf b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.blf index e1dedd8b41e..28707aeb3ac 100644 --- a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.blf +++ b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.blf @@ -1,23 +1,23 @@ Row bbox=[0, 0, 500, 200] Figure bbox=[0, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] Figure bbox=[250, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.png b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.png index 46858211279..cbc7c263dc3 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.png and b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_color_baseline.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.blf b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.blf index e1dedd8b41e..28707aeb3ac 100644 --- a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.blf +++ b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.blf @@ -1,23 +1,23 @@ Row bbox=[0, 0, 500, 200] Figure bbox=[0, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] Figure bbox=[250, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.png b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.png index 3e47be45825..e0ed42bc6cd 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.png and b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_colorbar_color.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.blf b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.blf index e1dedd8b41e..28707aeb3ac 100644 --- a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.blf +++ b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.blf @@ -1,23 +1,23 @@ Row bbox=[0, 0, 500, 200] Figure bbox=[0, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] Figure bbox=[250, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.png b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.png index e689dfd4aa2..cfb608a4ff7 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.png and b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_nan_color.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.blf b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.blf index 3b1e6b6fb67..fd189d09bf1 100644 --- a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.blf +++ b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.blf @@ -1,23 +1,23 @@ Row bbox=[0, 0, 500, 200] Figure bbox=[0, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 134, 151] - GlyphRenderer bbox=[35, 34, 122, 137] - ImageStack bbox=[35, 34, 122, 137] + CartesianFrame bbox=[29, 25, 134, 153] + GlyphRenderer bbox=[35, 32, 122, 139] + ImageStack bbox=[35, 32, 122, 139] LinearAxis bbox=[29, 178, 134, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[163, 27, 87, 151] - LinearAxis bbox=[198, 37, 42, 131] - Title bbox=[173, 37, 0, 131] - Title bbox=[29, 0, 134, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[163, 25, 87, 153] + LinearAxis bbox=[198, 35, 42, 133] + Title bbox=[173, 35, 0, 133] + Title bbox=[29, 0, 134, 25] Figure bbox=[250, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 134, 151] - GlyphRenderer bbox=[35, 34, 122, 137] - ImageStack bbox=[35, 34, 122, 137] + CartesianFrame bbox=[29, 25, 134, 153] + GlyphRenderer bbox=[35, 32, 122, 139] + ImageStack bbox=[35, 32, 122, 139] LinearAxis bbox=[29, 178, 134, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[163, 27, 87, 151] - LinearAxis bbox=[198, 37, 42, 131] - Title bbox=[173, 37, 0, 131] - Title bbox=[29, 0, 134, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[163, 25, 87, 153] + LinearAxis bbox=[198, 35, 42, 133] + Title bbox=[173, 35, 0, 133] + Title bbox=[29, 0, 134, 25] diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.png b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.png index 0ac986b3f19..293772a366c 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.png and b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_rescale_discrete_levels.png differ diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.blf b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.blf index e1dedd8b41e..28707aeb3ac 100644 --- a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.blf +++ b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.blf @@ -1,23 +1,23 @@ Row bbox=[0, 0, 500, 200] Figure bbox=[0, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] Figure bbox=[250, 0, 250, 200] Canvas bbox=[0, 0, 250, 200] - CartesianFrame bbox=[29, 27, 147, 151] - GlyphRenderer bbox=[36, 34, 133, 137] - ImageStack bbox=[36, 34, 133, 137] + CartesianFrame bbox=[29, 25, 147, 153] + GlyphRenderer bbox=[36, 32, 133, 139] + ImageStack bbox=[36, 32, 133, 139] LinearAxis bbox=[29, 178, 147, 22] - LinearAxis bbox=[0, 27, 29, 151] - ColorBar bbox=[176, 27, 74, 151] - LinearAxis bbox=[211, 37, 29, 131] - Title bbox=[186, 37, 0, 131] - Title bbox=[29, 0, 147, 27] + LinearAxis bbox=[0, 25, 29, 153] + ColorBar bbox=[176, 25, 74, 153] + LinearAxis bbox=[211, 35, 29, 133] + Title bbox=[186, 35, 0, 133] + Title bbox=[29, 0, 147, 25] diff --git a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.png b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.png index 4ddd854e433..85eabdfc295 100644 Binary files a/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.png and b/bokehjs/test/baselines/linux/Color_mapping__with_weighted_stack_color_mapper__should_support_start_alpha.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBBAA_colors.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBBAA_colors.png index 4be8d8d254e..dfaab5646c3 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBBAA_colors.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBBAA_colors.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBB_colors.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBB_colors.png index 7cafb8f9128..65aa09ba007 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBB_colors.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_#RRGGBB_colors.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_32-bit_unsigned_integers.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_32-bit_unsigned_integers.png index 4be8d8d254e..dfaab5646c3 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_32-bit_unsigned_integers.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_32-bit_unsigned_integers.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGBA_tuples.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGBA_tuples.png index 15bb4563d43..ce5e681559c 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGBA_tuples.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGBA_tuples.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGB_tuples.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGB_tuples.png index 7cafb8f9128..65aa09ba007 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGB_tuples.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_RGB_tuples.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_named_colors.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_named_colors.png index 7cafb8f9128..65aa09ba007 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_named_colors.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_named_colors.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_other_CSS4_colors.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_other_CSS4_colors.png index 15bb4563d43..ce5e681559c 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_other_CSS4_colors.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_other_CSS4_colors.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b)_colors.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b)_colors.png index 7cafb8f9128..65aa09ba007 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b)_colors.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b)_colors.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b___a)_colors.png b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b___a)_colors.png index 15bb4563d43..ce5e681559c 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b___a)_colors.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_arrays_of_rgb(r_g_b___a)_colors.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_3__arrays.png b/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_3__arrays.png index 7cafb8f9128..65aa09ba007 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_3__arrays.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_3__arrays.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_4__arrays.png b/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_4__arrays.png index 15bb4563d43..ce5e681559c 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_4__arrays.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_float_N,_4__arrays.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_object_N__arrays.png b/bokehjs/test/baselines/linux/Color_support__should_allow_object_N__arrays.png index 4be8d8d254e..dfaab5646c3 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_object_N__arrays.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_object_N__arrays.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_uint32_N__arrays.png b/bokehjs/test/baselines/linux/Color_support__should_allow_uint32_N__arrays.png index 4be8d8d254e..dfaab5646c3 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_uint32_N__arrays.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_uint32_N__arrays.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_3__arrays.png b/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_3__arrays.png index 7cafb8f9128..65aa09ba007 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_3__arrays.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_3__arrays.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_4__arrays.png b/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_4__arrays.png index 4be8d8d254e..dfaab5646c3 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_4__arrays.png and b/bokehjs/test/baselines/linux/Color_support__should_allow_uint8_N,_4__arrays.png differ diff --git a/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.blf b/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.blf index 887e960d868..e90746a92aa 100644 --- a/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.blf +++ b/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 600, 250] Figure bbox=[0, 0, 200, 250] Canvas bbox=[0, 0, 200, 250] - CartesianFrame bbox=[29, 27, 166, 201] - GlyphRenderer bbox=[37, 36, 150, 61] - MultiLine bbox=[37, 36, 150, 61] - GlyphRenderer bbox=[37, 103, 145, 55] - Block bbox=[37, 103, 145, 55] - GlyphRenderer bbox=[37, 164, 145, 55] - Block bbox=[37, 164, 145, 55] + CartesianFrame bbox=[29, 25, 166, 203] + GlyphRenderer bbox=[37, 34, 150, 62] + MultiLine bbox=[37, 34, 150, 62] + GlyphRenderer bbox=[37, 102, 145, 55] + Block bbox=[37, 102, 145, 55] + GlyphRenderer bbox=[37, 163, 145, 56] + Block bbox=[37, 163, 145, 56] LinearAxis bbox=[29, 228, 166, 22] - LinearAxis bbox=[0, 27, 29, 201] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 203] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 250] Canvas bbox=[0, 0, 200, 250] - CartesianFrame bbox=[29, 27, 166, 201] - GlyphRenderer bbox=[37, 36, 150, 61] - MultiLine bbox=[37, 36, 150, 61] - GlyphRenderer bbox=[37, 103, 145, 55] - Block bbox=[37, 103, 145, 55] - GlyphRenderer bbox=[37, 164, 145, 55] - Block bbox=[37, 164, 145, 55] + CartesianFrame bbox=[29, 25, 166, 203] + GlyphRenderer bbox=[37, 34, 150, 62] + MultiLine bbox=[37, 34, 150, 62] + GlyphRenderer bbox=[37, 102, 145, 55] + Block bbox=[37, 102, 145, 55] + GlyphRenderer bbox=[37, 163, 145, 56] + Block bbox=[37, 163, 145, 56] LinearAxis bbox=[29, 228, 166, 22] - LinearAxis bbox=[0, 27, 29, 201] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 203] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 250] Canvas bbox=[0, 0, 200, 250] - CartesianFrame bbox=[29, 27, 166, 201] - GlyphRenderer bbox=[37, 36, 150, 61] - MultiLine bbox=[37, 36, 150, 61] - GlyphRenderer bbox=[37, 103, 145, 55] - Block bbox=[37, 103, 145, 55] - GlyphRenderer bbox=[37, 164, 145, 55] - Block bbox=[37, 164, 145, 55] + CartesianFrame bbox=[29, 25, 166, 203] + GlyphRenderer bbox=[37, 34, 150, 62] + MultiLine bbox=[37, 34, 150, 62] + GlyphRenderer bbox=[37, 102, 145, 55] + Block bbox=[37, 102, 145, 55] + GlyphRenderer bbox=[37, 163, 145, 56] + Block bbox=[37, 163, 145, 56] LinearAxis bbox=[29, 228, 166, 22] - LinearAxis bbox=[0, 27, 29, 201] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 203] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.png b/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.png index e7907f255ae..8b71df806b8 100644 Binary files a/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.png and b/bokehjs/test/baselines/linux/Color_support__should_combine_alpha_for_line,_fill_and_hatch_on_all_output_backends.png differ diff --git a/bokehjs/test/baselines/linux/ContourRenderer__should_support_line_fill_and_hatch_properties.png b/bokehjs/test/baselines/linux/ContourRenderer__should_support_line_fill_and_hatch_properties.png index 5601902480d..fa1c6a22797 100644 Binary files a/bokehjs/test/baselines/linux/ContourRenderer__should_support_line_fill_and_hatch_properties.png and b/bokehjs/test/baselines/linux/ContourRenderer__should_support_line_fill_and_hatch_properties.png differ diff --git a/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_x-axis.png b/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_x-axis.png index 85826b2bcbf..8306019087b 100644 Binary files a/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_x-axis.png and b/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_y-axis.png b/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_y-axis.png index 733d86dfeb7..f2401f85bf7 100644 Binary files a/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_y-axis.png and b/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_one_span_when_hovering_over_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_two_spans_when_hovering_over_the_frame.png b/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_two_spans_when_hovering_over_the_frame.png index 62b3e19448e..c803ab85fe8 100644 Binary files a/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_two_spans_when_hovering_over_the_frame.png and b/bokehjs/test/baselines/linux/CrosshairTool__with_dimensions='both'__should_show_two_spans_when_hovering_over_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_a_non-selectable_table.png b/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_a_non-selectable_table.png index 9d5050a890d..3be6221236b 100644 Binary files a/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_a_non-selectable_table.png and b/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_a_non-selectable_table.png differ diff --git a/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_CustomJSCompare.png b/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_CustomJSCompare.png index 2a558b4d274..92ecb7c5f51 100644 Binary files a/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_CustomJSCompare.png and b/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_CustomJSCompare.png differ diff --git a/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_NanCompare.png b/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_NanCompare.png index d9c11a2b171..ef09826d192 100644 Binary files a/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_NanCompare.png and b/bokehjs/test/baselines/linux/DataTable__should_allow_sorting_with_a_NanCompare.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_AnnotationMenu.png b/bokehjs/test/baselines/linux/Examples__should_support_AnnotationMenu.png index 10ab223c72b..e0f52843ab3 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_AnnotationMenu.png and b/bokehjs/test/baselines/linux/Examples__should_support_AnnotationMenu.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.blf b/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.blf index b0d3dce0b6f..275fa466c78 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.blf @@ -4,41 +4,41 @@ Column bbox=[0, 0, 800, 825] GridBox bbox=[0, 0, 800, 800] Plot bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 27, 369, 351] - GlyphRenderer bbox=[26, 148, 369, 176] - Line bbox=[26, 148, 369, 176] - GlyphRenderer bbox=[105, 188, 176, 110] - Scatter bbox=[105, 188, 176, 110] + CartesianFrame bbox=[26, 25, 369, 353] + GlyphRenderer bbox=[26, 147, 369, 176] + Line bbox=[26, 147, 369, 176] + GlyphRenderer bbox=[105, 187, 176, 111] + Scatter bbox=[105, 187, 176, 111] LinearAxis bbox=[26, 378, 369, 22] - LinearAxis bbox=[0, 27, 26, 351] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 353] + Title bbox=[26, 0, 369, 25] Plot bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 27, 369, 351] - GlyphRenderer bbox=[26, 148, 369, 176] - Line bbox=[26, 148, 369, 176] - GlyphRenderer bbox=[105, 215, 176, 103] - Scatter bbox=[105, 215, 176, 103] + CartesianFrame bbox=[26, 25, 369, 353] + GlyphRenderer bbox=[26, 147, 369, 176] + Line bbox=[26, 147, 369, 176] + GlyphRenderer bbox=[105, 214, 176, 103] + Scatter bbox=[105, 214, 176, 103] LinearAxis bbox=[26, 378, 369, 22] - LinearAxis bbox=[0, 27, 26, 351] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 353] + Title bbox=[26, 0, 369, 25] Plot bbox=[0, 400, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 27, 369, 351] - GlyphRenderer bbox=[26, 148, 369, 176] - Line bbox=[26, 148, 369, 176] - GlyphRenderer bbox=[105, 157, 176, 123] - Scatter bbox=[105, 157, 176, 123] + CartesianFrame bbox=[26, 25, 369, 353] + GlyphRenderer bbox=[26, 147, 369, 176] + Line bbox=[26, 147, 369, 176] + GlyphRenderer bbox=[105, 155, 176, 124] + Scatter bbox=[105, 155, 176, 124] LinearAxis bbox=[26, 378, 369, 22] - LinearAxis bbox=[0, 27, 26, 351] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 353] + Title bbox=[26, 0, 369, 25] Plot bbox=[400, 400, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 27, 369, 351] - GlyphRenderer bbox=[26, 148, 369, 176] - Line bbox=[26, 148, 369, 176] - GlyphRenderer bbox=[175, 161, 194, 121] - Scatter bbox=[175, 161, 194, 121] + CartesianFrame bbox=[26, 25, 369, 353] + GlyphRenderer bbox=[26, 147, 369, 176] + Line bbox=[26, 147, 369, 176] + GlyphRenderer bbox=[175, 159, 194, 122] + Scatter bbox=[175, 159, 194, 122] LinearAxis bbox=[26, 378, 369, 22] - LinearAxis bbox=[0, 27, 26, 351] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 353] + Title bbox=[26, 0, 369, 25] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.png b/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.png index 527dee3daff..c3647d59eb9 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.png and b/bokehjs/test/baselines/linux/Examples__should_support_Anscombe.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.blf b/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.blf index f2ca17b5880..7c6fac9224b 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.blf @@ -1,29 +1,29 @@ Column bbox=[0, 0, 700, 562] Figure bbox=[0, 0, 700, 500] Canvas bbox=[0, 0, 700, 500] - CartesianFrame bbox=[64, 30, 631, 413] + CartesianFrame bbox=[64, 28, 631, 415] GlyphRenderer bbox=[93, 411, 573, 13] Line bbox=[93, 411, 573, 13] GlyphRenderer bbox=[93, 398, 573, 26] Line bbox=[93, 398, 573, 26] - GlyphRenderer bbox=[93, 380, 573, 44] - Line bbox=[93, 380, 573, 44] + GlyphRenderer bbox=[93, 379, 573, 45] + Line bbox=[93, 379, 573, 45] GlyphRenderer bbox=[93, 353, 573, 71] Line bbox=[93, 353, 573, 71] GlyphRenderer bbox=[93, 318, 573, 106] Line bbox=[93, 318, 573, 106] - GlyphRenderer bbox=[93, 274, 573, 150] - Line bbox=[93, 274, 573, 150] - GlyphRenderer bbox=[93, 218, 573, 206] - Line bbox=[93, 218, 573, 206] - GlyphRenderer bbox=[93, 149, 573, 275] - Line bbox=[93, 149, 573, 275] - GlyphRenderer bbox=[93, 67, 573, 357] - Line bbox=[93, 67, 573, 357] - GlyphRenderer bbox=[157, 49, 141, 364] - Line bbox=[157, 49, 141, 364] + GlyphRenderer bbox=[93, 273, 573, 151] + Line bbox=[93, 273, 573, 151] + GlyphRenderer bbox=[93, 216, 573, 208] + Line bbox=[93, 216, 573, 208] + GlyphRenderer bbox=[93, 148, 573, 276] + Line bbox=[93, 148, 573, 276] + GlyphRenderer bbox=[93, 65, 573, 359] + Line bbox=[93, 65, 573, 359] + GlyphRenderer bbox=[157, 47, 141, 366] + Line bbox=[157, 47, 141, 366] LinearAxis bbox=[64, 443, 631, 57] - LinearAxis bbox=[0, 30, 64, 413] - Legend bbox=[565, 40, 120, 292] - Title bbox=[64, 0, 631, 30] + LinearAxis bbox=[0, 28, 64, 415] + Legend bbox=[565, 38, 120, 292] + Title bbox=[64, 0, 631, 28] Div bbox=[5, 505, 502, 52] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.png b/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.png index cfa7a0b28c6..e2208b02406 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.png and b/bokehjs/test/baselines/linux/Examples__should_support_BlackbodyRadiation.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Burtin.png b/bokehjs/test/baselines/linux/Examples__should_support_Burtin.png index fd159a25a08..108defa8472 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Burtin.png and b/bokehjs/test/baselines/linux/Examples__should_support_Burtin.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.blf b/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.blf index de4becdd215..04ae7ad0f2d 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[41, 27, 529, 551] - GlyphRenderer bbox=[65, 52, 481, 501] - Circle bbox=[65, 52, 481, 501] + CartesianFrame bbox=[41, 25, 529, 553] + GlyphRenderer bbox=[65, 50, 481, 503] + Circle bbox=[65, 50, 481, 503] LinearAxis bbox=[41, 578, 529, 22] - LinearAxis bbox=[0, 27, 41, 551] - Title bbox=[41, 0, 529, 27] - ToolbarPanel bbox=[570, 27, 30, 551] - Toolbar bbox=[570, 27, 30, 551] + LinearAxis bbox=[0, 25, 41, 553] + Title bbox=[41, 0, 529, 25] + ToolbarPanel bbox=[570, 25, 30, 553] + Toolbar bbox=[570, 25, 30, 553] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.png b/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.png index 8740be53685..a80448770a5 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.png and b/bokehjs/test/baselines/linux/Examples__should_support_CSSVariables.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Categorical.blf b/bokehjs/test/baselines/linux/Examples__should_support_Categorical.blf index deaf07bf481..cdc0f91689c 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_Categorical.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_Categorical.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 1200, 600] Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[32, 27, 563, 546] - GlyphRenderer bbox=[126, 118, 375, 364] - Rect bbox=[126, 118, 375, 364] + CartesianFrame bbox=[32, 25, 563, 548] + GlyphRenderer bbox=[126, 116, 375, 366] + Rect bbox=[126, 116, 375, 366] CategoricalAxis bbox=[32, 573, 563, 27] - CategoricalAxis bbox=[0, 27, 32, 546] - Title bbox=[32, 0, 563, 27] + CategoricalAxis bbox=[0, 25, 32, 548] + Title bbox=[32, 0, 563, 25] Figure bbox=[600, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[20, 27, 575, 546] - GlyphRenderer bbox=[20, 61, 460, 478] - Segment bbox=[20, 61, 460, 478] - GlyphRenderer bbox=[78, 61, 402, 478] - Scatter bbox=[78, 61, 402, 478] + CartesianFrame bbox=[20, 25, 575, 548] + GlyphRenderer bbox=[20, 59, 460, 480] + Segment bbox=[20, 59, 460, 480] + GlyphRenderer bbox=[78, 59, 402, 480] + Scatter bbox=[78, 59, 402, 480] LinearAxis bbox=[20, 573, 575, 22] - CategoricalAxis bbox=[0, 27, 20, 546] - Title bbox=[20, 0, 575, 27] + CategoricalAxis bbox=[0, 25, 20, 548] + Title bbox=[20, 0, 575, 25] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Categorical.png b/bokehjs/test/baselines/linux/Examples__should_support_Categorical.png index cec947052dc..433d35ea6af 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Categorical.png and b/bokehjs/test/baselines/linux/Examples__should_support_Categorical.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_ColorScatter.png b/bokehjs/test/baselines/linux/Examples__should_support_ColorScatter.png index d5ba743dd24..d8b358c97c7 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_ColorScatter.png and b/bokehjs/test/baselines/linux/Examples__should_support_ColorScatter.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.blf b/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.blf index cc455a645fb..8257d0267a2 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[33, 27, 537, 551] + CartesianFrame bbox=[33, 25, 537, 553] Panel bbox=[33, 557, 82, 21] bokeh.models.dom.HTML bbox=[0, 0, 79, 17] - GlyphRenderer bbox=[57, 52, 489, 501] - Circle bbox=[57, 52, 489, 501] + GlyphRenderer bbox=[57, 50, 489, 503] + Circle bbox=[57, 50, 489, 503] LinearAxis bbox=[33, 578, 537, 22] - LinearAxis bbox=[0, 27, 33, 551] - Title bbox=[33, 0, 537, 27] - ToolbarPanel bbox=[570, 27, 30, 551] - Toolbar bbox=[570, 27, 30, 551] + LinearAxis bbox=[0, 25, 33, 553] + Title bbox=[33, 0, 537, 25] + ToolbarPanel bbox=[570, 25, 30, 553] + Toolbar bbox=[570, 25, 30, 553] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.png b/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.png index 31598346e9c..db803edfbb7 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.png and b/bokehjs/test/baselines/linux/Examples__should_support_CustomAttribution.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.blf b/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.blf index 8c2af4644e7..cf25408cd3e 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.blf @@ -1,120 +1,120 @@ Figure bbox=[0, 0, 600, 800] Canvas bbox=[0, 0, 600, 800] - CartesianFrame bbox=[5, 27, 590, 768] - GlyphRenderer bbox=[32, 62, 74, 21] - Scatter bbox=[32, 62, 74, 21] - GlyphRenderer bbox=[70, 118, 0, 0] - Text bbox=[70, 118, 0, 0] - GlyphRenderer bbox=[198, 63, 61, 19] - Scatter bbox=[198, 63, 61, 19] - GlyphRenderer bbox=[224, 118, 0, 0] - Text bbox=[224, 118, 0, 0] - GlyphRenderer bbox=[344, 62, 59, 21] - Scatter bbox=[344, 62, 59, 21] - GlyphRenderer bbox=[377, 118, 0, 0] - Text bbox=[377, 118, 0, 0] - GlyphRenderer bbox=[495, 62, 51, 17] - Scatter bbox=[495, 62, 51, 17] - GlyphRenderer bbox=[530, 118, 0, 0] - Text bbox=[530, 118, 0, 0] - GlyphRenderer bbox=[41, 154, 67, 19] - Scatter bbox=[41, 154, 67, 19] - GlyphRenderer bbox=[70, 209, 0, 0] - Text bbox=[70, 209, 0, 0] - GlyphRenderer bbox=[188, 152, 70, 16] - Scatter bbox=[188, 152, 70, 16] - GlyphRenderer bbox=[224, 209, 0, 0] - Text bbox=[224, 209, 0, 0] - GlyphRenderer bbox=[342, 156, 60, 18] - Scatter bbox=[342, 156, 60, 18] - GlyphRenderer bbox=[377, 209, 0, 0] - Text bbox=[377, 209, 0, 0] - GlyphRenderer bbox=[493, 154, 64, 21] - Scatter bbox=[493, 154, 64, 21] - GlyphRenderer bbox=[530, 209, 0, 0] - Text bbox=[530, 209, 0, 0] - GlyphRenderer bbox=[36, 246, 71, 20] - Scatter bbox=[36, 246, 71, 20] - GlyphRenderer bbox=[70, 301, 0, 0] - Text bbox=[70, 301, 0, 0] - GlyphRenderer bbox=[188, 245, 72, 21] - Scatter bbox=[188, 245, 72, 21] - GlyphRenderer bbox=[224, 301, 0, 0] - Text bbox=[224, 301, 0, 0] - GlyphRenderer bbox=[341, 248, 73, 17] - Scatter bbox=[341, 248, 73, 17] - GlyphRenderer bbox=[377, 301, 0, 0] - Text bbox=[377, 301, 0, 0] - GlyphRenderer bbox=[506, 247, 49, 18] - Scatter bbox=[506, 247, 49, 18] - GlyphRenderer bbox=[530, 301, 0, 0] - Text bbox=[530, 301, 0, 0] - GlyphRenderer bbox=[37, 336, 71, 16] - Scatter bbox=[37, 336, 71, 16] - GlyphRenderer bbox=[70, 393, 0, 0] - Text bbox=[70, 393, 0, 0] - GlyphRenderer bbox=[199, 339, 58, 19] - Scatter bbox=[199, 339, 58, 19] - GlyphRenderer bbox=[224, 393, 0, 0] - Text bbox=[224, 393, 0, 0] - GlyphRenderer bbox=[339, 338, 74, 19] - Scatter bbox=[339, 338, 74, 19] - GlyphRenderer bbox=[377, 393, 0, 0] - Text bbox=[377, 393, 0, 0] - GlyphRenderer bbox=[494, 336, 55, 22] - Scatter bbox=[494, 336, 55, 22] - GlyphRenderer bbox=[530, 393, 0, 0] - Text bbox=[530, 393, 0, 0] - GlyphRenderer bbox=[45, 429, 56, 17] - Scatter bbox=[45, 429, 56, 17] - GlyphRenderer bbox=[70, 485, 0, 0] - Text bbox=[70, 485, 0, 0] - GlyphRenderer bbox=[195, 430, 51, 19] - Scatter bbox=[195, 430, 51, 19] - GlyphRenderer bbox=[224, 485, 0, 0] - Text bbox=[224, 485, 0, 0] - GlyphRenderer bbox=[347, 428, 64, 19] - Scatter bbox=[347, 428, 64, 19] - GlyphRenderer bbox=[377, 485, 0, 0] - Text bbox=[377, 485, 0, 0] - GlyphRenderer bbox=[509, 428, 57, 14] - Scatter bbox=[509, 428, 57, 14] - GlyphRenderer bbox=[530, 485, 0, 0] - Text bbox=[530, 485, 0, 0] - GlyphRenderer bbox=[39, 520, 63, 22] - Scatter bbox=[39, 520, 63, 22] - GlyphRenderer bbox=[70, 577, 0, 0] - Text bbox=[70, 577, 0, 0] - GlyphRenderer bbox=[185, 522, 73, 17] - Scatter bbox=[185, 522, 73, 17] - GlyphRenderer bbox=[224, 577, 0, 0] - Text bbox=[224, 577, 0, 0] - GlyphRenderer bbox=[343, 520, 62, 17] - Scatter bbox=[343, 520, 62, 17] - GlyphRenderer bbox=[377, 577, 0, 0] - Text bbox=[377, 577, 0, 0] - GlyphRenderer bbox=[497, 522, 71, 19] - Scatter bbox=[497, 522, 71, 19] - GlyphRenderer bbox=[530, 577, 0, 0] - Text bbox=[530, 577, 0, 0] + CartesianFrame bbox=[5, 25, 590, 770] + GlyphRenderer bbox=[32, 61, 74, 20] + Scatter bbox=[32, 61, 74, 20] + GlyphRenderer bbox=[70, 116, 0, 0] + Text bbox=[70, 116, 0, 0] + GlyphRenderer bbox=[198, 61, 61, 19] + Scatter bbox=[198, 61, 61, 19] + GlyphRenderer bbox=[224, 116, 0, 0] + Text bbox=[224, 116, 0, 0] + GlyphRenderer bbox=[344, 60, 59, 21] + Scatter bbox=[344, 60, 59, 21] + GlyphRenderer bbox=[377, 116, 0, 0] + Text bbox=[377, 116, 0, 0] + GlyphRenderer bbox=[495, 60, 51, 18] + Scatter bbox=[495, 60, 51, 18] + GlyphRenderer bbox=[530, 116, 0, 0] + Text bbox=[530, 116, 0, 0] + GlyphRenderer bbox=[41, 153, 67, 18] + Scatter bbox=[41, 153, 67, 18] + GlyphRenderer bbox=[70, 208, 0, 0] + Text bbox=[70, 208, 0, 0] + GlyphRenderer bbox=[188, 151, 70, 16] + Scatter bbox=[188, 151, 70, 16] + GlyphRenderer bbox=[224, 208, 0, 0] + Text bbox=[224, 208, 0, 0] + GlyphRenderer bbox=[342, 154, 60, 18] + Scatter bbox=[342, 154, 60, 18] + GlyphRenderer bbox=[377, 208, 0, 0] + Text bbox=[377, 208, 0, 0] + GlyphRenderer bbox=[493, 152, 64, 21] + Scatter bbox=[493, 152, 64, 21] + GlyphRenderer bbox=[530, 208, 0, 0] + Text bbox=[530, 208, 0, 0] + GlyphRenderer bbox=[36, 245, 71, 19] + Scatter bbox=[36, 245, 71, 19] + GlyphRenderer bbox=[70, 300, 0, 0] + Text bbox=[70, 300, 0, 0] + GlyphRenderer bbox=[188, 244, 72, 21] + Scatter bbox=[188, 244, 72, 21] + GlyphRenderer bbox=[224, 300, 0, 0] + Text bbox=[224, 300, 0, 0] + GlyphRenderer bbox=[341, 246, 73, 17] + Scatter bbox=[341, 246, 73, 17] + GlyphRenderer bbox=[377, 300, 0, 0] + Text bbox=[377, 300, 0, 0] + GlyphRenderer bbox=[506, 246, 49, 17] + Scatter bbox=[506, 246, 49, 17] + GlyphRenderer bbox=[530, 300, 0, 0] + Text bbox=[530, 300, 0, 0] + GlyphRenderer bbox=[37, 335, 71, 16] + Scatter bbox=[37, 335, 71, 16] + GlyphRenderer bbox=[70, 392, 0, 0] + Text bbox=[70, 392, 0, 0] + GlyphRenderer bbox=[199, 338, 58, 19] + Scatter bbox=[199, 338, 58, 19] + GlyphRenderer bbox=[224, 392, 0, 0] + Text bbox=[224, 392, 0, 0] + GlyphRenderer bbox=[339, 337, 74, 19] + Scatter bbox=[339, 337, 74, 19] + GlyphRenderer bbox=[377, 392, 0, 0] + Text bbox=[377, 392, 0, 0] + GlyphRenderer bbox=[494, 335, 55, 22] + Scatter bbox=[494, 335, 55, 22] + GlyphRenderer bbox=[530, 392, 0, 0] + Text bbox=[530, 392, 0, 0] + GlyphRenderer bbox=[45, 428, 56, 17] + Scatter bbox=[45, 428, 56, 17] + GlyphRenderer bbox=[70, 484, 0, 0] + Text bbox=[70, 484, 0, 0] + GlyphRenderer bbox=[195, 429, 51, 19] + Scatter bbox=[195, 429, 51, 19] + GlyphRenderer bbox=[224, 484, 0, 0] + Text bbox=[224, 484, 0, 0] + GlyphRenderer bbox=[347, 427, 64, 19] + Scatter bbox=[347, 427, 64, 19] + GlyphRenderer bbox=[377, 484, 0, 0] + Text bbox=[377, 484, 0, 0] + GlyphRenderer bbox=[509, 427, 57, 14] + Scatter bbox=[509, 427, 57, 14] + GlyphRenderer bbox=[530, 484, 0, 0] + Text bbox=[530, 484, 0, 0] + GlyphRenderer bbox=[39, 519, 63, 22] + Scatter bbox=[39, 519, 63, 22] + GlyphRenderer bbox=[70, 576, 0, 0] + Text bbox=[70, 576, 0, 0] + GlyphRenderer bbox=[185, 521, 73, 17] + Scatter bbox=[185, 521, 73, 17] + GlyphRenderer bbox=[224, 576, 0, 0] + Text bbox=[224, 576, 0, 0] + GlyphRenderer bbox=[343, 519, 62, 17] + Scatter bbox=[343, 519, 62, 17] + GlyphRenderer bbox=[377, 576, 0, 0] + Text bbox=[377, 576, 0, 0] + GlyphRenderer bbox=[497, 521, 71, 19] + Scatter bbox=[497, 521, 71, 19] + GlyphRenderer bbox=[530, 576, 0, 0] + Text bbox=[530, 576, 0, 0] GlyphRenderer bbox=[41, 611, 53, 21] Scatter bbox=[41, 611, 53, 21] GlyphRenderer bbox=[70, 668, 0, 0] Text bbox=[70, 668, 0, 0] - GlyphRenderer bbox=[186, 613, 71, 19] - Scatter bbox=[186, 613, 71, 19] + GlyphRenderer bbox=[186, 612, 71, 19] + Scatter bbox=[186, 612, 71, 19] GlyphRenderer bbox=[224, 668, 0, 0] Text bbox=[224, 668, 0, 0] GlyphRenderer bbox=[353, 612, 61, 16] Scatter bbox=[353, 612, 61, 16] GlyphRenderer bbox=[377, 668, 0, 0] Text bbox=[377, 668, 0, 0] - GlyphRenderer bbox=[493, 613, 65, 20] - Scatter bbox=[493, 613, 65, 20] + GlyphRenderer bbox=[493, 613, 65, 19] + Scatter bbox=[493, 613, 65, 19] GlyphRenderer bbox=[530, 668, 0, 0] Text bbox=[530, 668, 0, 0] - GlyphRenderer bbox=[34, 704, 69, 21] - Scatter bbox=[34, 704, 69, 21] + GlyphRenderer bbox=[34, 703, 69, 22] + Scatter bbox=[34, 703, 69, 22] GlyphRenderer bbox=[70, 760, 0, 0] Text bbox=[70, 760, 0, 0] GlyphRenderer bbox=[190, 708, 60, 17] @@ -122,5 +122,5 @@ Figure bbox=[0, 0, 600, 800] GlyphRenderer bbox=[224, 760, 0, 0] Text bbox=[224, 760, 0, 0] LinearAxis bbox=[5, 795, 590, 0] - LinearAxis bbox=[5, 27, 0, 768] - Title bbox=[5, 0, 590, 27] + LinearAxis bbox=[5, 25, 0, 770] + Title bbox=[5, 0, 590, 25] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.png b/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.png index ded00a26e87..10f1efa2a53 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.png and b/bokehjs/test/baselines/linux/Examples__should_support_CustomMarkers.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.blf b/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.blf index 28f70145024..2cbc845d2af 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[33, 27, 537, 551] - GlyphRenderer bbox=[57, 52, 489, 501] - Circle bbox=[57, 52, 489, 501] + CartesianFrame bbox=[33, 25, 537, 553] + GlyphRenderer bbox=[57, 50, 489, 503] + Circle bbox=[57, 50, 489, 503] LinearAxis bbox=[33, 578, 537, 22] - LinearAxis bbox=[0, 27, 33, 551] - Title bbox=[33, 0, 537, 27] - ToolbarPanel bbox=[570, 27, 30, 551] - Toolbar bbox=[570, 27, 30, 551] + LinearAxis bbox=[0, 25, 33, 553] + Title bbox=[33, 0, 537, 25] + ToolbarPanel bbox=[570, 25, 30, 553] + Toolbar bbox=[570, 25, 30, 553] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 85, 30, 30] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.png b/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.png index 9e5a1297268..175cd56ff6c 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.png and b/bokehjs/test/baselines/linux/Examples__should_support_CustomSelectionToolbar.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Dialog.png b/bokehjs/test/baselines/linux/Examples__should_support_Dialog.png index 6993c3d541e..1068b6951fc 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Dialog.png and b/bokehjs/test/baselines/linux/Examples__should_support_Dialog.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_GridBandPattern.png b/bokehjs/test/baselines/linux/Examples__should_support_GridBandPattern.png index 49adbe817c2..6ba88c08e8d 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_GridBandPattern.png and b/bokehjs/test/baselines/linux/Examples__should_support_GridBandPattern.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.blf b/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.blf index eb28c501df9..2a63f43c9a1 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[33, 27, 537, 551] - GlyphRenderer bbox=[57, 52, 489, 501] - Circle bbox=[57, 52, 489, 501] + CartesianFrame bbox=[33, 25, 537, 553] + GlyphRenderer bbox=[57, 50, 489, 503] + Circle bbox=[57, 50, 489, 503] LinearAxis bbox=[33, 578, 537, 22] - LinearAxis bbox=[0, 27, 33, 551] - Title bbox=[33, 0, 537, 27] - ToolbarPanel bbox=[570, 27, 30, 551] - Toolbar bbox=[570, 27, 30, 551] + LinearAxis bbox=[0, 25, 33, 553] + Title bbox=[33, 0, 537, 25] + ToolbarPanel bbox=[570, 25, 30, 553] + Toolbar bbox=[570, 25, 30, 553] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.png b/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.png index ceca0dc5224..aa657dacc90 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.png and b/bokehjs/test/baselines/linux/Examples__should_support_InlineDataEntry.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.blf b/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.blf index 38df1ae957a..5da159a9a1a 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.blf @@ -10,31 +10,31 @@ GridPlot bbox=[0, 0, 800, 430] GridBox bbox=[0, 30, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 27, 369, 351] - GlyphRenderer bbox=[43, 149, 335, 107] - Scatter bbox=[43, 149, 335, 107] - GlyphRenderer bbox=[43, 96, 335, 213] - Scatter bbox=[43, 96, 335, 213] - GlyphRenderer bbox=[43, 43, 335, 319] - Scatter bbox=[43, 43, 335, 319] + CartesianFrame bbox=[26, 25, 369, 353] + GlyphRenderer bbox=[43, 148, 335, 107] + Scatter bbox=[43, 148, 335, 107] + GlyphRenderer bbox=[43, 95, 335, 213] + Scatter bbox=[43, 95, 335, 213] + GlyphRenderer bbox=[43, 41, 335, 321] + Scatter bbox=[43, 41, 335, 321] LinearAxis bbox=[26, 378, 369, 22] - LinearAxis bbox=[0, 27, 26, 351] - Legend bbox=[293, 37, 92, 108] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 353] + Legend bbox=[293, 35, 92, 108] + Title bbox=[26, 0, 369, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[26, 27, 369, 351] - GlyphRenderer bbox=[43, 149, 335, 107] - Scatter bbox=[43, 149, 335, 107] - GlyphRenderer bbox=[43, 149, 335, 107] - Line bbox=[43, 149, 335, 107] - GlyphRenderer bbox=[43, 96, 335, 213] - Line bbox=[43, 96, 335, 213] - GlyphRenderer bbox=[43, 43, 335, 319] - Scatter bbox=[43, 43, 335, 319] - GlyphRenderer bbox=[43, 43, 335, 319] - Line bbox=[43, 43, 335, 319] + CartesianFrame bbox=[26, 25, 369, 353] + GlyphRenderer bbox=[43, 148, 335, 107] + Scatter bbox=[43, 148, 335, 107] + GlyphRenderer bbox=[43, 148, 335, 107] + Line bbox=[43, 148, 335, 107] + GlyphRenderer bbox=[43, 95, 335, 213] + Line bbox=[43, 95, 335, 213] + GlyphRenderer bbox=[43, 41, 335, 321] + Scatter bbox=[43, 41, 335, 321] + GlyphRenderer bbox=[43, 41, 335, 321] + Line bbox=[43, 41, 335, 321] LinearAxis bbox=[26, 378, 369, 22] - LinearAxis bbox=[0, 27, 26, 351] - Legend bbox=[293, 37, 92, 108] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 353] + Legend bbox=[293, 35, 92, 108] + Title bbox=[26, 0, 369, 25] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.png b/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.png index a7d35534bd9..81c3b0b1f3c 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.png and b/bokehjs/test/baselines/linux/Examples__should_support_LegendVisibilityTool.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.blf b/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.blf index 71b615f994e..cc7de8842f7 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.blf @@ -1,13 +1,13 @@ Column bbox=[0, 0, 710, 510] Figure bbox=[0, 0, 670, 400] Canvas bbox=[0, 0, 670, 400] - CartesianFrame bbox=[69, 27, 596, 323] - GlyphRenderer bbox=[96, 42, 542, 293] - Quad bbox=[96, 42, 542, 293] - GlyphRenderer bbox=[96, 70, 542, 262] - Line bbox=[96, 70, 542, 262] + CartesianFrame bbox=[69, 25, 596, 325] + GlyphRenderer bbox=[96, 40, 542, 295] + Quad bbox=[96, 40, 542, 295] + GlyphRenderer bbox=[96, 69, 542, 263] + Line bbox=[96, 69, 542, 263] LinearAxis bbox=[69, 350, 596, 50] - LinearAxis bbox=[0, 27, 69, 323] - Legend bbox=[447, 37, 208, 65] - Title bbox=[69, 0, 596, 27] + LinearAxis bbox=[0, 25, 69, 325] + Legend bbox=[447, 35, 208, 65] + Title bbox=[69, 0, 596, 25] Div bbox=[5, 405, 700, 100] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.png b/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.png index 7a63fbcae25..e1bf6962d76 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.png and b/bokehjs/test/baselines/linux/Examples__should_support_NormalDistribution.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_PolarSubcoordinates.png b/bokehjs/test/baselines/linux/Examples__should_support_PolarSubcoordinates.png index 0c82c82b611..916ccfbd07d 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_PolarSubcoordinates.png and b/bokehjs/test/baselines/linux/Examples__should_support_PolarSubcoordinates.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_categorical_offsets.png b/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_categorical_offsets.png index 5b8a25f3eaa..0a405dd18bc 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_categorical_offsets.png and b/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_categorical_offsets.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_sub-coordinates.png b/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_sub-coordinates.png index 8396ac94a97..37293a2a035 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_sub-coordinates.png and b/bokehjs/test/baselines/linux/Examples__should_support_RidgePlot_using_sub-coordinates.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.blf b/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.blf index e422e41eedc..132c6cd5286 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.blf @@ -1,58 +1,58 @@ Figure bbox=[0, 0, 800, 600] Canvas bbox=[0, 0, 800, 600] - CartesianFrame bbox=[5, 124, 790, 431] - GlyphRenderer bbox=[5, 498, 790, 30] - VArea bbox=[5, 498, 790, 30] + CartesianFrame bbox=[5, 118, 790, 437] + GlyphRenderer bbox=[5, 497, 790, 31] + VArea bbox=[5, 497, 790, 31] GlyphRenderer bbox=[5, 528, 790, 0] VArea bbox=[5, 528, 790, 0] - GlyphRenderer bbox=[5, 498, 790, 30] - Line bbox=[5, 498, 790, 30] - GlyphRenderer bbox=[5, 448, 790, 26] - VArea bbox=[5, 448, 790, 26] - GlyphRenderer bbox=[5, 474, 790, 26] - VArea bbox=[5, 474, 790, 26] - GlyphRenderer bbox=[5, 448, 790, 52] - Line bbox=[5, 448, 790, 52] - GlyphRenderer bbox=[5, 396, 790, 24] - VArea bbox=[5, 396, 790, 24] - GlyphRenderer bbox=[5, 420, 790, 22] - VArea bbox=[5, 420, 790, 22] - GlyphRenderer bbox=[5, 396, 790, 46] - Line bbox=[5, 396, 790, 46] - GlyphRenderer bbox=[5, 343, 790, 23] - VArea bbox=[5, 343, 790, 23] - GlyphRenderer bbox=[5, 366, 790, 24] - VArea bbox=[5, 366, 790, 24] - GlyphRenderer bbox=[5, 343, 790, 47] - Line bbox=[5, 343, 790, 47] - GlyphRenderer bbox=[5, 290, 790, 23] - VArea bbox=[5, 290, 790, 23] - GlyphRenderer bbox=[5, 313, 790, 19] - VArea bbox=[5, 313, 790, 19] - GlyphRenderer bbox=[5, 290, 790, 42] - Line bbox=[5, 290, 790, 42] - GlyphRenderer bbox=[5, 236, 790, 23] - VArea bbox=[5, 236, 790, 23] - GlyphRenderer bbox=[5, 259, 790, 22] - VArea bbox=[5, 259, 790, 22] - GlyphRenderer bbox=[5, 236, 790, 45] - Line bbox=[5, 236, 790, 45] - GlyphRenderer bbox=[5, 182, 790, 23] - VArea bbox=[5, 182, 790, 23] - GlyphRenderer bbox=[5, 205, 790, 18] - VArea bbox=[5, 205, 790, 18] - GlyphRenderer bbox=[5, 182, 790, 41] - Line bbox=[5, 182, 790, 41] - GlyphRenderer bbox=[5, 129, 790, 22] - VArea bbox=[5, 129, 790, 22] - GlyphRenderer bbox=[5, 151, 790, 22] - VArea bbox=[5, 151, 790, 22] - GlyphRenderer bbox=[5, 129, 790, 44] - Line bbox=[5, 129, 790, 44] - GlyphRenderer bbox=[5, -415, 790, 970] - Line bbox=[5, -415, 790, 970] - Title bbox=[5, 97, 790, 27] - Title bbox=[5, 50, 790, 47] - Title bbox=[5, 0, 790, 50] + GlyphRenderer bbox=[5, 497, 790, 31] + Line bbox=[5, 497, 790, 31] + GlyphRenderer bbox=[5, 447, 790, 26] + VArea bbox=[5, 447, 790, 26] + GlyphRenderer bbox=[5, 473, 790, 26] + VArea bbox=[5, 473, 790, 26] + GlyphRenderer bbox=[5, 447, 790, 52] + Line bbox=[5, 447, 790, 52] + GlyphRenderer bbox=[5, 394, 790, 24] + VArea bbox=[5, 394, 790, 24] + GlyphRenderer bbox=[5, 418, 790, 22] + VArea bbox=[5, 418, 790, 22] + GlyphRenderer bbox=[5, 394, 790, 46] + Line bbox=[5, 394, 790, 46] + GlyphRenderer bbox=[5, 340, 790, 24] + VArea bbox=[5, 340, 790, 24] + GlyphRenderer bbox=[5, 364, 790, 24] + VArea bbox=[5, 364, 790, 24] + GlyphRenderer bbox=[5, 340, 790, 48] + Line bbox=[5, 340, 790, 48] + GlyphRenderer bbox=[5, 286, 790, 23] + VArea bbox=[5, 286, 790, 23] + GlyphRenderer bbox=[5, 309, 790, 20] + VArea bbox=[5, 309, 790, 20] + GlyphRenderer bbox=[5, 286, 790, 43] + Line bbox=[5, 286, 790, 43] + GlyphRenderer bbox=[5, 232, 790, 23] + VArea bbox=[5, 232, 790, 23] + GlyphRenderer bbox=[5, 255, 790, 23] + VArea bbox=[5, 255, 790, 23] + GlyphRenderer bbox=[5, 232, 790, 46] + Line bbox=[5, 232, 790, 46] + GlyphRenderer bbox=[5, 177, 790, 23] + VArea bbox=[5, 177, 790, 23] + GlyphRenderer bbox=[5, 200, 790, 18] + VArea bbox=[5, 200, 790, 18] + GlyphRenderer bbox=[5, 177, 790, 41] + Line bbox=[5, 177, 790, 41] + GlyphRenderer bbox=[5, 123, 790, 22] + VArea bbox=[5, 123, 790, 22] + GlyphRenderer bbox=[5, 145, 790, 23] + VArea bbox=[5, 145, 790, 23] + GlyphRenderer bbox=[5, 123, 790, 45] + Line bbox=[5, 123, 790, 45] + GlyphRenderer bbox=[5, -428, 790, 983] + Line bbox=[5, -428, 790, 983] + Title bbox=[5, 93, 790, 25] + Title bbox=[5, 48, 790, 45] + Title bbox=[5, 0, 790, 48] LinearAxis bbox=[5, 555, 790, 45] - LinearAxis bbox=[5, 124, 0, 431] + LinearAxis bbox=[5, 118, 0, 437] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.png b/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.png index 59bcb455a21..1897e137b3e 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.png and b/bokehjs/test/baselines/linux/Examples__should_support_Schrodinger.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Sprint.blf b/bokehjs/test/baselines/linux/Examples__should_support_Sprint.blf index 8e19ddb0af9..5b09e747c95 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_Sprint.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_Sprint.blf @@ -1,11 +1,11 @@ Figure bbox=[0, 0, 1000, 600] Canvas bbox=[0, 0, 1000, 600] - CartesianFrame bbox=[5, 35, 952, 530] - GlyphRenderer bbox=[79, 52, 878, 496] - Scatter bbox=[79, 52, 878, 496] - GlyphRenderer bbox=[79, 52, 878, 496] - Text bbox=[79, 52, 878, 496] + CartesianFrame bbox=[5, 33, 952, 532] + GlyphRenderer bbox=[79, 50, 878, 498] + Scatter bbox=[79, 50, 878, 498] + GlyphRenderer bbox=[79, 50, 878, 498] + Text bbox=[79, 50, 878, 498] LinearAxis bbox=[5, 565, 952, 22] Label bbox=[5, 587, 952, 13] - LinearAxis bbox=[957, 35, 43, 530] - Title bbox=[5, 0, 952, 35] + LinearAxis bbox=[957, 33, 43, 532] + Title bbox=[5, 0, 952, 33] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Sprint.png b/bokehjs/test/baselines/linux/Examples__should_support_Sprint.png index 5f16c666e77..88b1d27f944 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Sprint.png and b/bokehjs/test/baselines/linux/Examples__should_support_Sprint.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.blf b/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.blf index 2a06b4f7cfc..89255fb6c1a 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.blf @@ -1,22 +1,22 @@ -Figure bbox=[0, 0, 510, 541] - Canvas bbox=[0, 0, 510, 541] - CartesianFrame bbox=[5, 36, 500, 500] - GlyphRenderer bbox=[47, 78, 416, 416] - AnnularWedge bbox=[47, 78, 416, 416] - GlyphRenderer bbox=[213, 244, 84, 84] - Circle bbox=[213, 244, 84, 84] - GlyphRenderer bbox=[255, 286, 0, 0] - Arc bbox=[255, 286, 0, 0] - GlyphRenderer bbox=[57, 65, 198, 106] - Text bbox=[57, 65, 198, 106] - GlyphRenderer bbox=[255, 286, 208, 167] - Segment bbox=[255, 286, 208, 167] - GlyphRenderer bbox=[255, 369, 208, 84] - Segment bbox=[255, 369, 208, 84] - GlyphRenderer bbox=[276, 369, 0, 0] - Text bbox=[276, 369, 0, 0] - GlyphRenderer bbox=[286, 411, 0, 0] - Text bbox=[286, 411, 0, 0] - GlyphRenderer bbox=[359, 453, 0, 0] - Text bbox=[359, 453, 0, 0] - Title bbox=[5, 0, 500, 36] +Figure bbox=[0, 0, 510, 539] + Canvas bbox=[0, 0, 510, 539] + CartesianFrame bbox=[5, 34, 500, 500] + GlyphRenderer bbox=[47, 76, 416, 416] + AnnularWedge bbox=[47, 76, 416, 416] + GlyphRenderer bbox=[213, 242, 84, 84] + Circle bbox=[213, 242, 84, 84] + GlyphRenderer bbox=[255, 284, 0, 0] + Arc bbox=[255, 284, 0, 0] + GlyphRenderer bbox=[57, 63, 198, 106] + Text bbox=[57, 63, 198, 106] + GlyphRenderer bbox=[255, 284, 208, 167] + Segment bbox=[255, 284, 208, 167] + GlyphRenderer bbox=[255, 367, 208, 84] + Segment bbox=[255, 367, 208, 84] + GlyphRenderer bbox=[276, 367, 0, 0] + Text bbox=[276, 367, 0, 0] + GlyphRenderer bbox=[286, 409, 0, 0] + Text bbox=[286, 409, 0, 0] + GlyphRenderer bbox=[359, 451, 0, 0] + Text bbox=[359, 451, 0, 0] + Title bbox=[5, 0, 500, 34] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.png b/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.png index 9cf86a7c325..6a76e4c8aab 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.png and b/bokehjs/test/baselines/linux/Examples__should_support_Trefoil.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.blf b/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.blf index 8214894a4bc..1c459423e67 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.blf @@ -9,27 +9,27 @@ GridPlot bbox=[0, 0, 600, 1330] GridBox bbox=[0, 30, 600, 1300] Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[39, 27, 556, 551] - GlyphRenderer bbox=[317, 303, 0, 0] - Rect bbox=[317, 303, 0, 0] - GlyphRenderer bbox=[67, 52, 500, 501] - Circle bbox=[67, 52, 500, 501] + CartesianFrame bbox=[39, 25, 556, 553] + GlyphRenderer bbox=[317, 302, 0, 0] + Rect bbox=[317, 302, 0, 0] + GlyphRenderer bbox=[66, 50, 502, 503] + Circle bbox=[66, 50, 502, 503] LinearAxis bbox=[39, 578, 556, 22] - LinearAxis bbox=[0, 27, 39, 551] - Title bbox=[39, 0, 556, 27] + LinearAxis bbox=[0, 25, 39, 553] + Title bbox=[39, 0, 556, 25] Figure bbox=[0, 600, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[39, 27, 256, 251] - GlyphRenderer bbox=[138, 38, 58, 229] - Scatter bbox=[138, 38, 58, 229] + CartesianFrame bbox=[39, 25, 256, 253] + GlyphRenderer bbox=[138, 37, 58, 230] + Scatter bbox=[138, 37, 58, 230] LinearAxis bbox=[39, 278, 256, 22] - LinearAxis bbox=[3, 27, 36, 251] - Title bbox=[39, 0, 256, 27] + LinearAxis bbox=[3, 25, 36, 253] + Title bbox=[39, 0, 256, 25] Figure bbox=[0, 900, 100, 400] Canvas bbox=[0, 0, 100, 400] - CartesianFrame bbox=[39, 27, 56, 351] - GlyphRenderer bbox=[42, 177, 50, 51] - Scatter bbox=[42, 177, 50, 51] + CartesianFrame bbox=[39, 25, 56, 353] + GlyphRenderer bbox=[42, 176, 50, 51] + Scatter bbox=[42, 176, 50, 51] LinearAxis bbox=[39, 378, 56, 22] - LinearAxis bbox=[3, 27, 36, 351] - Title bbox=[39, 0, 56, 27] + LinearAxis bbox=[3, 25, 36, 353] + Title bbox=[39, 0, 56, 25] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.png b/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.png index a34eb02e0ce..2cb7b2a8488 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.png and b/bokehjs/test/baselines/linux/Examples__should_support_plotting_Aspect.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_Image.png b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_Image.png index 6e5bbf04f10..610148b6bf4 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_Image.png and b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_Image.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.blf b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.blf index f75847776a2..58ef20356eb 100644 --- a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.blf +++ b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.blf @@ -1,16 +1,16 @@ Column bbox=[0, 0, 600, 716] Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[33, 27, 562, 551] - GlyphRenderer bbox=[314, 68, 239, 235] - ImageRGBA bbox=[314, 68, 239, 235] - GlyphRenderer bbox=[314, 303, 0, 0] - Scatter bbox=[314, 303, 0, 0] - GlyphRenderer bbox=[314, 303, 0, 0] - Scatter bbox=[314, 303, 0, 0] + CartesianFrame bbox=[33, 25, 562, 553] + GlyphRenderer bbox=[314, 66, 239, 236] + ImageRGBA bbox=[314, 66, 239, 236] + GlyphRenderer bbox=[314, 302, 0, 0] + Scatter bbox=[314, 302, 0, 0] + GlyphRenderer bbox=[314, 302, 0, 0] + Scatter bbox=[314, 302, 0, 0] LinearAxis bbox=[33, 578, 562, 22] - LinearAxis bbox=[0, 27, 33, 551] + LinearAxis bbox=[0, 25, 33, 553] Legend bbox=[125, 543, 378, 30] - Title bbox=[33, 0, 562, 27] + Title bbox=[33, 0, 562, 25] Select bbox=[5, 605, 121, 48] Select bbox=[5, 663, 110, 48] diff --git a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.png b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.png index b49e27c5a21..9569ee26911 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.png and b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageOriginAnchor.png differ diff --git a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageRGBA.png b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageRGBA.png index 4bf46b4a057..405c0d4f5ff 100644 Binary files a/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageRGBA.png and b/bokehjs/test/baselines/linux/Examples__should_support_topics_images_ImageRGBA.png differ diff --git a/bokehjs/test/baselines/linux/Feature__in_issue_#10914__should_allow_customizing_tool_icons.png b/bokehjs/test/baselines/linux/Feature__in_issue_#10914__should_allow_customizing_tool_icons.png index c717807c3cd..f41b1791ad1 100644 Binary files a/bokehjs/test/baselines/linux/Feature__in_issue_#10914__should_allow_customizing_tool_icons.png and b/bokehjs/test/baselines/linux/Feature__in_issue_#10914__should_allow_customizing_tool_icons.png differ diff --git a/bokehjs/test/baselines/linux/Feature__in_issue_#14225__should_allow_default_context_tool_menu_in_figure().png b/bokehjs/test/baselines/linux/Feature__in_issue_#14225__should_allow_default_context_tool_menu_in_figure().png index df045ba2682..3d2c2dfae56 100644 Binary files a/bokehjs/test/baselines/linux/Feature__in_issue_#14225__should_allow_default_context_tool_menu_in_figure().png and b/bokehjs/test/baselines/linux/Feature__in_issue_#14225__should_allow_default_context_tool_menu_in_figure().png differ diff --git a/bokehjs/test/baselines/linux/Feature__in_issue_#3799__should_allow_to_linked_crosshairs.png b/bokehjs/test/baselines/linux/Feature__in_issue_#3799__should_allow_to_linked_crosshairs.png index 3ad48d07617..6bd75367ac5 100644 Binary files a/bokehjs/test/baselines/linux/Feature__in_issue_#3799__should_allow_to_linked_crosshairs.png and b/bokehjs/test/baselines/linux/Feature__in_issue_#3799__should_allow_to_linked_crosshairs.png differ diff --git a/bokehjs/test/baselines/linux/Feature__in_issue_#4698__should_allow_to_undo_zoom_with_dblclick_gesture.png b/bokehjs/test/baselines/linux/Feature__in_issue_#4698__should_allow_to_undo_zoom_with_dblclick_gesture.png index 8c6362412eb..d62e0fdb4ea 100644 Binary files a/bokehjs/test/baselines/linux/Feature__in_issue_#4698__should_allow_to_undo_zoom_with_dblclick_gesture.png and b/bokehjs/test/baselines/linux/Feature__in_issue_#4698__should_allow_to_undo_zoom_with_dblclick_gesture.png differ diff --git a/bokehjs/test/baselines/linux/Feature__in_issue_#9194__should_allow_above_and_below_fill_and_hover_in_Slope_annotation.png b/bokehjs/test/baselines/linux/Feature__in_issue_#9194__should_allow_above_and_below_fill_and_hover_in_Slope_annotation.png index 02329877aa3..2470b95bd02 100644 Binary files a/bokehjs/test/baselines/linux/Feature__in_issue_#9194__should_allow_above_and_below_fill_and_hover_in_Slope_annotation.png and b/bokehjs/test/baselines/linux/Feature__in_issue_#9194__should_allow_above_and_below_fill_and_hover_in_Slope_annotation.png differ diff --git a/bokehjs/test/baselines/linux/Feature__in_issue_#9498__should_allow_to_inherit_sizing_mode_from_parent.png b/bokehjs/test/baselines/linux/Feature__in_issue_#9498__should_allow_to_inherit_sizing_mode_from_parent.png index 7b34b0cdfca..526a3b74de6 100644 Binary files a/bokehjs/test/baselines/linux/Feature__in_issue_#9498__should_allow_to_inherit_sizing_mode_from_parent.png and b/bokehjs/test/baselines/linux/Feature__in_issue_#9498__should_allow_to_inherit_sizing_mode_from_parent.png differ diff --git a/bokehjs/test/baselines/linux/FlexBox__should_support_Column_layout__with_3_plots_of_200x200_size.png b/bokehjs/test/baselines/linux/FlexBox__should_support_Column_layout__with_3_plots_of_200x200_size.png index bc2fd1f9496..ba15cec35a3 100644 Binary files a/bokehjs/test/baselines/linux/FlexBox__should_support_Column_layout__with_3_plots_of_200x200_size.png and b/bokehjs/test/baselines/linux/FlexBox__should_support_Column_layout__with_3_plots_of_200x200_size.png differ diff --git a/bokehjs/test/baselines/linux/FlexBox__should_support_Row_layout__with_3_plots_of_200x200_size.png b/bokehjs/test/baselines/linux/FlexBox__should_support_Row_layout__with_3_plots_of_200x200_size.png index 91749875af2..aa00a28e259 100644 Binary files a/bokehjs/test/baselines/linux/FlexBox__should_support_Row_layout__with_3_plots_of_200x200_size.png and b/bokehjs/test/baselines/linux/FlexBox__should_support_Row_layout__with_3_plots_of_200x200_size.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.blf b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.blf index a39118f0e77..705aa374180 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.png b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.png index ccc533a20cb..4773557e806 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.png and b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.radius.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.blf b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.blf index a39118f0e77..705aa374180 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.png b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.png index 26bbd0dab19..d647504b72a 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.png and b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle.x_and_Circle.y.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.blf b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.blf index d3328608cd0..1a599310119 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.blf @@ -1,28 +1,28 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] - Rect bbox=[49, 49, 223, 207] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] + Rect bbox=[49, 47, 223, 209] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] - Rect bbox=[49, 49, 223, 207] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] + Rect bbox=[49, 47, 223, 209] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 229] - Circle bbox=[38, 38, 245, 229] - Rect bbox=[49, 49, 223, 207] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 229] + Circle bbox=[38, 37, 245, 229] + Rect bbox=[49, 47, 223, 209] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.png b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.png index fa1577f8ddf..49bc8a2c667 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.png and b/bokehjs/test/baselines/linux/Glyph_models__should_allow_to_override_Circle_with_Rect_in_a_GlyphRenderer.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.png index 8d9348dc636..58b83f7be4b 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-135.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.png index 982ae3f99a1..85c25477006 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..-275.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.png index f28bf7b2edb..ef968dd49b7 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..135.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.png index cc4e8236d54..6aea4bbed1e 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_-23..275.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.png index 367389a3e89..1252c12be69 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-135.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.png index 66210171a3f..43165673eed 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..-275.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.png index ba54db10abf..3dbb861cc08 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..135.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.blf index 2aea3f416f8..7607a9bcf91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - AnnularWedge bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - AnnularWedge bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + AnnularWedge bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + AnnularWedge bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.png index 1b8df0667ae..716d7ae713c 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_AnnularWedge__with_angle_range_23..275.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.blf index c0d5044b677..3f67cb0f6ed 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - Annulus bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - Annulus bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + Annulus bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + Annulus bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - Annulus bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - Annulus bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + Annulus bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + Annulus bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - Annulus bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 27, 177, 251] - Annulus bbox=[118, 27, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + Annulus bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 25, 177, 253] + Annulus bbox=[118, 25, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.png index aa59a8ac6e4..8841ad9d113 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Annulus.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.blf index faca16cc6b5..bf27de8954a 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Arc bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Arc bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Arc bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Arc bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.png index ce49baa2933..564ba1b1474 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Arc.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.blf index e7c6339fe08..24f67d3f421 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Bezier bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Bezier bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Bezier bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Bezier bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.png index 1326184c1af..438bea90d5d 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Bezier.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.blf index 0e6d78023df..69d7b88640c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Block bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Block bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Block bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Block bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Block bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Block bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.png index fafe3c6a95c..f6728453c79 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Block.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.blf index 4b9a8bb2560..d13a1f34e06 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[51, -4, 178, 251] - Circle bbox=[51, -4, 178, 251] - GlyphRenderer bbox=[140, -4, 177, 251] - Circle bbox=[140, -4, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[51, -7, 178, 253] + Circle bbox=[51, -7, 178, 253] + GlyphRenderer bbox=[140, -7, 177, 253] + Circle bbox=[140, -7, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[51, -4, 178, 251] - Circle bbox=[51, -4, 178, 251] - GlyphRenderer bbox=[140, -4, 177, 251] - Circle bbox=[140, -4, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[51, -7, 178, 253] + Circle bbox=[51, -7, 178, 253] + GlyphRenderer bbox=[140, -7, 177, 253] + Circle bbox=[140, -7, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[51, -4, 178, 251] - Circle bbox=[51, -4, 178, 251] - GlyphRenderer bbox=[140, -4, 177, 251] - Circle bbox=[140, -4, 177, 251] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[51, -7, 178, 253] + Circle bbox=[51, -7, 178, 253] + GlyphRenderer bbox=[140, -7, 177, 253] + Circle bbox=[140, -7, 177, 253] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.png index 19ded3142f0..35d5119dc4c 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Circle.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.blf index 61a84816134..5b0e1d6e002 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.blf @@ -1,21 +1,21 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[73, 90, 89, 125] - Ellipse bbox=[73, 90, 89, 125] - GlyphRenderer bbox=[162, 90, 89, 125] - Ellipse bbox=[162, 90, 89, 125] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[73, 88, 89, 127] + Ellipse bbox=[73, 88, 89, 127] + GlyphRenderer bbox=[162, 88, 89, 127] + Ellipse bbox=[162, 88, 89, 127] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[73, 90, 89, 125] - Ellipse bbox=[73, 90, 89, 125] - GlyphRenderer bbox=[162, 90, 89, 125] - Ellipse bbox=[162, 90, 89, 125] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[73, 88, 89, 127] + Ellipse bbox=[73, 88, 89, 127] + GlyphRenderer bbox=[162, 88, 89, 127] + Ellipse bbox=[162, 88, 89, 127] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.png index b66b5a29511..e55e0c92356 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ellipse.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.blf index e30f4204724..91dc58911b0 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - HArea bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + HArea bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - HArea bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + HArea bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.png index b46e3fbd1a9..d42678b186e 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_HArea.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.blf index b0623f95f63..dfb0bcb388d 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 196, 150, 71] - HAreaStep bbox=[37, 196, 150, 71] - GlyphRenderer bbox=[37, 117, 150, 71] - HAreaStep bbox=[37, 117, 150, 71] - GlyphRenderer bbox=[37, 38, 150, 71] - HAreaStep bbox=[37, 38, 150, 71] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 195, 150, 72] + HAreaStep bbox=[37, 195, 150, 72] + GlyphRenderer bbox=[37, 116, 150, 71] + HAreaStep bbox=[37, 116, 150, 71] + GlyphRenderer bbox=[37, 36, 150, 72] + HAreaStep bbox=[37, 36, 150, 72] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 196, 150, 71] - HAreaStep bbox=[37, 196, 150, 71] - GlyphRenderer bbox=[37, 117, 150, 71] - HAreaStep bbox=[37, 117, 150, 71] - GlyphRenderer bbox=[37, 38, 150, 71] - HAreaStep bbox=[37, 38, 150, 71] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 195, 150, 72] + HAreaStep bbox=[37, 195, 150, 72] + GlyphRenderer bbox=[37, 116, 150, 71] + HAreaStep bbox=[37, 116, 150, 71] + GlyphRenderer bbox=[37, 36, 150, 72] + HAreaStep bbox=[37, 36, 150, 72] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.png index 7e46122b75a..ad2b4ca825a 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_HAreaStep.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.blf index d578cc987cb..4237ea92a24 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[36, 27, 159, 251] - GlyphRenderer bbox=[43, 38, 145, 229] - HBar bbox=[43, 38, 145, 229] + CartesianFrame bbox=[36, 25, 159, 253] + GlyphRenderer bbox=[43, 37, 145, 230] + HBar bbox=[43, 37, 145, 230] LinearAxis bbox=[36, 278, 159, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 159, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[36, 27, 159, 251] - GlyphRenderer bbox=[43, 38, 145, 229] - HBar bbox=[43, 38, 145, 229] + CartesianFrame bbox=[36, 25, 159, 253] + GlyphRenderer bbox=[43, 37, 145, 230] + HBar bbox=[43, 37, 145, 230] LinearAxis bbox=[36, 278, 159, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 159, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[36, 27, 159, 251] - GlyphRenderer bbox=[43, 38, 145, 229] - HBar bbox=[43, 38, 145, 229] + CartesianFrame bbox=[36, 25, 159, 253] + GlyphRenderer bbox=[43, 37, 145, 230] + HBar bbox=[43, 37, 145, 230] LinearAxis bbox=[36, 278, 159, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 159, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 159, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.png index aef9fbffe04..3fb2c8d4d8a 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_HBar.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.blf index 56587032c7a..443ae5902bc 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.blf @@ -1,21 +1,21 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] + CartesianFrame bbox=[33, 25, 262, 253] GlyphRenderer bbox=[45, 191, 0, 76] HSpan bbox=[45, 191, 0, 76] GlyphRenderer bbox=[45, 267, 79, 0] VSpan bbox=[45, 267, 79, 0] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] + CartesianFrame bbox=[33, 25, 262, 253] GlyphRenderer bbox=[45, 191, 0, 76] HSpan bbox=[45, 191, 0, 76] GlyphRenderer bbox=[45, 267, 79, 0] VSpan bbox=[45, 267, 79, 0] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.png index fad73298c61..caaf43f3036 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_HSpan_and_VSpan.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.blf index a12ad199b27..7b5f5a92a91 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 61, 0, 114] - HStrip bbox=[45, 61, 0, 114] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 60, 0, 115] + HStrip bbox=[45, 60, 0, 115] GlyphRenderer bbox=[140, 267, 119, 0] VStrip bbox=[140, 267, 119, 0] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 61, 0, 114] - HStrip bbox=[45, 61, 0, 114] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 60, 0, 115] + HStrip bbox=[45, 60, 0, 115] GlyphRenderer bbox=[140, 267, 119, 0] VStrip bbox=[140, 267, 119, 0] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 61, 0, 114] - HStrip bbox=[45, 61, 0, 114] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 60, 0, 115] + HStrip bbox=[45, 60, 0, 115] GlyphRenderer bbox=[140, 267, 119, 0] VStrip bbox=[140, 267, 119, 0] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.png index 148b28b8843..6f1f610a686 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_HStrip_and_VStrip.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.blf index d4badbde781..57f612bd1e9 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Line bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Line bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Line bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Line bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.png index 0ba62b383e7..f84a2fe1099 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Line.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_MathMLGlyph.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_MathMLGlyph.png index 9469f03d395..1355ac5ec65 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_MathMLGlyph.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_MathMLGlyph.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.blf index b6b56e6b62f..1bb2fcc75db 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 450, 200] Figure bbox=[0, 0, 150, 200] Canvas bbox=[0, 0, 150, 200] - CartesianFrame bbox=[29, 27, 116, 151] - GlyphRenderer bbox=[34, 34, 106, 137] - MultiLine bbox=[34, 34, 106, 137] + CartesianFrame bbox=[29, 25, 116, 153] + GlyphRenderer bbox=[34, 32, 106, 139] + MultiLine bbox=[34, 32, 106, 139] LinearAxis bbox=[29, 178, 116, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 200] Canvas bbox=[0, 0, 150, 200] - CartesianFrame bbox=[29, 27, 116, 151] - GlyphRenderer bbox=[34, 34, 106, 137] - MultiLine bbox=[34, 34, 106, 137] + CartesianFrame bbox=[29, 25, 116, 153] + GlyphRenderer bbox=[34, 32, 106, 139] + MultiLine bbox=[34, 32, 106, 139] LinearAxis bbox=[29, 178, 116, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 116, 25] Figure bbox=[300, 0, 150, 200] Canvas bbox=[0, 0, 150, 200] - CartesianFrame bbox=[29, 27, 116, 151] - GlyphRenderer bbox=[34, 34, 106, 137] - MultiLine bbox=[34, 34, 106, 137] + CartesianFrame bbox=[29, 25, 116, 153] + GlyphRenderer bbox=[34, 32, 106, 139] + MultiLine bbox=[34, 32, 106, 139] LinearAxis bbox=[29, 178, 116, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.png index 83977764f9b..20d408e3b49 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiLine.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.blf index 65db4fa8148..4b482ba3649 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - MultiPolygons bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + MultiPolygons bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - MultiPolygons bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + MultiPolygons bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.png index ea3d5f4808d..3b3314dfac1 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_MultiPolygon.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.blf index 22a7c73484f..7f2b2df32ea 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - Ngon bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 33, 173, 245] - Ngon bbox=[118, 33, 173, 245] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + Ngon bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 31, 173, 247] + Ngon bbox=[118, 31, 173, 247] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - Ngon bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 33, 173, 245] - Ngon bbox=[118, 33, 173, 245] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + Ngon bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 31, 173, 247] + Ngon bbox=[118, 31, 173, 247] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, 27, 177, 251] - Ngon bbox=[29, 27, 177, 251] - GlyphRenderer bbox=[118, 33, 173, 245] - Ngon bbox=[118, 33, 173, 245] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, 25, 177, 253] + Ngon bbox=[29, 25, 177, 253] + GlyphRenderer bbox=[118, 31, 173, 247] + Ngon bbox=[118, 31, 173, 247] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.png index 8f39fd896ee..14352151dcb 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ngon.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.blf index dce2823806e..74f0ea59863 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[40, 132, 118, 125] - Patch bbox=[40, 132, 118, 125] - GlyphRenderer bbox=[40, 90, 118, 125] - Patch bbox=[40, 90, 118, 125] - GlyphRenderer bbox=[40, 48, 118, 125] - Patch bbox=[40, 48, 118, 125] - GlyphRenderer bbox=[158, 132, 117, 125] - Patch bbox=[158, 132, 117, 125] - GlyphRenderer bbox=[158, 90, 117, 125] - Patch bbox=[158, 90, 117, 125] - GlyphRenderer bbox=[158, 48, 117, 125] - Patch bbox=[158, 48, 117, 125] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[40, 130, 118, 127] + Patch bbox=[40, 130, 118, 127] + GlyphRenderer bbox=[40, 88, 118, 127] + Patch bbox=[40, 88, 118, 127] + GlyphRenderer bbox=[40, 46, 118, 127] + Patch bbox=[40, 46, 118, 127] + GlyphRenderer bbox=[158, 130, 117, 127] + Patch bbox=[158, 130, 117, 127] + GlyphRenderer bbox=[158, 88, 117, 127] + Patch bbox=[158, 88, 117, 127] + GlyphRenderer bbox=[158, 46, 117, 127] + Patch bbox=[158, 46, 117, 127] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[40, 132, 118, 125] - Patch bbox=[40, 132, 118, 125] - GlyphRenderer bbox=[40, 90, 118, 125] - Patch bbox=[40, 90, 118, 125] - GlyphRenderer bbox=[40, 48, 118, 125] - Patch bbox=[40, 48, 118, 125] - GlyphRenderer bbox=[158, 132, 117, 125] - Patch bbox=[158, 132, 117, 125] - GlyphRenderer bbox=[158, 90, 117, 125] - Patch bbox=[158, 90, 117, 125] - GlyphRenderer bbox=[158, 48, 117, 125] - Patch bbox=[158, 48, 117, 125] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[40, 130, 118, 127] + Patch bbox=[40, 130, 118, 127] + GlyphRenderer bbox=[40, 88, 118, 127] + Patch bbox=[40, 88, 118, 127] + GlyphRenderer bbox=[40, 46, 118, 127] + Patch bbox=[40, 46, 118, 127] + GlyphRenderer bbox=[158, 130, 117, 127] + Patch bbox=[158, 130, 117, 127] + GlyphRenderer bbox=[158, 88, 117, 127] + Patch bbox=[158, 88, 117, 127] + GlyphRenderer bbox=[158, 46, 117, 127] + Patch bbox=[158, 46, 117, 127] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.png index 48e28d1ad78..ebb8a64d62f 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patch.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.blf index 2b457d20707..69834666f5b 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.blf @@ -1,21 +1,21 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[40, 48, 118, 209] - Patches bbox=[40, 48, 118, 209] - GlyphRenderer bbox=[158, 48, 117, 209] - Patches bbox=[158, 48, 117, 209] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[40, 46, 118, 211] + Patches bbox=[40, 46, 118, 211] + GlyphRenderer bbox=[158, 46, 117, 211] + Patches bbox=[158, 46, 117, 211] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[40, 48, 118, 209] - Patches bbox=[40, 48, 118, 209] - GlyphRenderer bbox=[158, 48, 117, 209] - Patches bbox=[158, 48, 117, 209] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[40, 46, 118, 211] + Patches bbox=[40, 46, 118, 211] + GlyphRenderer bbox=[158, 46, 117, 211] + Patches bbox=[158, 46, 117, 211] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.png index 48e28d1ad78..ebb8a64d62f 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Patches.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.blf index eb2275b248e..5485398b0c1 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Quad bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Quad bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Quad bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Quad bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Quad bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Quad bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.png index d685d896016..34d61b336a1 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf index eb2275b248e..5485398b0c1 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Quad bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Quad bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Quad bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Quad bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Quad bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Quad bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png index 3a6547067ec..09307523301 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quad_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.blf index 4b41423225e..452afc6e648 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Quadratic bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Quadratic bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Quadratic bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Quadratic bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.png index 244e74aaf28..049fc447ffc 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Quadratic.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.blf index 3ca2ed80e9a..34f0f020707 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Ray bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Ray bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Ray bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Ray bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.png index 61d74c7ed72..580b28d66f5 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Ray.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.blf index 436f0434e26..b4dd2f9665b 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[54, 95, 107, 115] - Rect bbox=[54, 95, 107, 115] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[54, 94, 107, 115] + Rect bbox=[54, 94, 107, 115] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[54, 95, 107, 115] - Rect bbox=[54, 95, 107, 115] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[54, 94, 107, 115] + Rect bbox=[54, 94, 107, 115] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[54, 95, 107, 115] - Rect bbox=[54, 95, 107, 115] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[54, 94, 107, 115] + Rect bbox=[54, 94, 107, 115] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.png index c6cf35dd1b6..e6d307a4a7f 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.blf index 79fa26bba6b..ce28b308e0d 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Rect bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Rect bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Rect bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Rect bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Rect bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Rect bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.png index 3fdf43f2455..3113efd8152 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_large_rounded_corners_that_need_scaling.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf index 436f0434e26..b4dd2f9665b 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[54, 95, 107, 115] - Rect bbox=[54, 95, 107, 115] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[54, 94, 107, 115] + Rect bbox=[54, 94, 107, 115] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[54, 95, 107, 115] - Rect bbox=[54, 95, 107, 115] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[54, 94, 107, 115] + Rect bbox=[54, 94, 107, 115] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[54, 95, 107, 115] - Rect bbox=[54, 95, 107, 115] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[54, 94, 107, 115] + Rect bbox=[54, 94, 107, 115] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png index 211da668c01..3232046b06a 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Rect_with_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.blf index 570d15835f9..0349d5ff7be 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Segment bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Segment bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - Segment bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + Segment bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.png index 24c1b2ea7cc..73ddf4e480b 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Segment.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.blf index dbf60a7e9af..34021f3829c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 208] - Step bbox=[37, 38, 150, 208] - GlyphRenderer bbox=[37, 49, 150, 207] - Step bbox=[37, 49, 150, 207] - GlyphRenderer bbox=[37, 59, 150, 208] - Step bbox=[37, 59, 150, 208] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 209] + Step bbox=[37, 37, 150, 209] + GlyphRenderer bbox=[37, 47, 150, 209] + Step bbox=[37, 47, 150, 209] + GlyphRenderer bbox=[37, 57, 150, 210] + Step bbox=[37, 57, 150, 210] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 208] - Step bbox=[37, 38, 150, 208] - GlyphRenderer bbox=[37, 49, 150, 207] - Step bbox=[37, 49, 150, 207] - GlyphRenderer bbox=[37, 59, 150, 208] - Step bbox=[37, 59, 150, 208] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 209] + Step bbox=[37, 37, 150, 209] + GlyphRenderer bbox=[37, 47, 150, 209] + Step bbox=[37, 47, 150, 209] + GlyphRenderer bbox=[37, 57, 150, 210] + Step bbox=[37, 57, 150, 210] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 208] - Step bbox=[37, 38, 150, 208] - GlyphRenderer bbox=[37, 49, 150, 207] - Step bbox=[37, 49, 150, 207] - GlyphRenderer bbox=[37, 59, 150, 208] - Step bbox=[37, 59, 150, 208] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 209] + Step bbox=[37, 37, 150, 209] + GlyphRenderer bbox=[37, 47, 150, 209] + Step bbox=[37, 47, 150, 209] + GlyphRenderer bbox=[37, 57, 150, 210] + Step bbox=[37, 57, 150, 210] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.png index 5fc871ca7cd..9066db149ea 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.blf index 92861ddff8a..b574c53ec51 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] - GlyphRenderer bbox=[37, 57, 150, 191] - Step bbox=[37, 57, 150, 191] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] + GlyphRenderer bbox=[37, 56, 150, 191] + Step bbox=[37, 56, 150, 191] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] - GlyphRenderer bbox=[37, 57, 150, 191] - Step bbox=[37, 57, 150, 191] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] + GlyphRenderer bbox=[37, 56, 150, 191] + Step bbox=[37, 56, 150, 191] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[29, 27, 166, 251] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] - GlyphRenderer bbox=[37, 57, 150, 191] - Step bbox=[37, 57, 150, 191] - GlyphRenderer bbox=[37, 38, 150, 229] - Step bbox=[37, 38, 150, 229] + CartesianFrame bbox=[29, 25, 166, 253] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] + GlyphRenderer bbox=[37, 56, 150, 191] + Step bbox=[37, 56, 150, 191] + GlyphRenderer bbox=[37, 37, 150, 230] + Step bbox=[37, 37, 150, 230] LinearAxis bbox=[29, 278, 166, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.png index d0bd72f074b..ba4b942782b 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Step_with_NaN.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=auto.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=auto.png index fd9d0456584..e0444f2b019 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=auto.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=auto.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=block.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=block.png index a2f60a17032..1eb60a9d36d 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=block.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=block.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=inline.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=inline.png index c332176633d..884f6c3c504 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=inline.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_TeXGlyph__with_display=inline.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text-like_glyphs__with_outline_shape.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text-like_glyphs__with_outline_shape.png index 99f53b4576c..8290fceb0a4 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text-like_glyphs__with_outline_shape.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text-like_glyphs__with_outline_shape.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.png index 6f7140e8876..fcc8efc7e24 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.png index fb7e64b0ccc..814d886b19d 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_background,_border_and_padding=10px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.png index c2bb4964d83..86a23cb517f 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_angles,_offsets,_background,_border_and_padding=10px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png index 23f665b3e06..5a56fefdcf8 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border,_padding=10px_and_rounded_corners_where_tl=5px,_tr=10px,_br=15px_and_bl=20px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.png index 66b00021f77..0e6ac5f567a 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_anchors,_background,_border_and_padding=10px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.png index 91e385899cd..d3c7db34c28 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background,_border_and_padding=10px.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.png index 2327b1295a9..976a687de7d 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.blf index adebdbb4ccb..dee294fad3c 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[55, 127, 70, 101] - Text bbox=[55, 127, 70, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[55, 126, 70, 101] + Text bbox=[55, 126, 70, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.png index 4e3079669f8..56c82e8125c 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_background_and_border.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.blf index ccfcb11ddd6..7e314a894c7 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[64, 127, 87, 101] - Text bbox=[64, 127, 87, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[64, 126, 87, 101] + Text bbox=[64, 126, 87, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[64, 127, 87, 101] - Text bbox=[64, 127, 87, 101] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[64, 126, 87, 101] + Text bbox=[64, 126, 87, 101] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.png index 1955e99c315..00b8813efcf 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Text__with_text_outline_color.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.blf index e8a24f31665..07508dd4261 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - VArea bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + VArea bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - VArea bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + VArea bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.png index 19488476e0b..80ef79e5350 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_VArea.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.blf index c0fd346110d..aff67d0d535 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 400, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 49, 229] - VAreaStep bbox=[28, 38, 49, 229] - GlyphRenderer bbox=[83, 38, 49, 229] - VAreaStep bbox=[83, 38, 49, 229] - GlyphRenderer bbox=[138, 38, 49, 229] - VAreaStep bbox=[138, 38, 49, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 49, 230] + VAreaStep bbox=[28, 37, 49, 230] + GlyphRenderer bbox=[83, 37, 49, 230] + VAreaStep bbox=[83, 37, 49, 230] + GlyphRenderer bbox=[138, 37, 49, 230] + VAreaStep bbox=[138, 37, 49, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 49, 229] - VAreaStep bbox=[28, 38, 49, 229] - GlyphRenderer bbox=[83, 38, 49, 229] - VAreaStep bbox=[83, 38, 49, 229] - GlyphRenderer bbox=[138, 38, 49, 229] - VAreaStep bbox=[138, 38, 49, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 49, 230] + VAreaStep bbox=[28, 37, 49, 230] + GlyphRenderer bbox=[83, 37, 49, 230] + VAreaStep bbox=[83, 37, 49, 230] + GlyphRenderer bbox=[138, 37, 49, 230] + VAreaStep bbox=[138, 37, 49, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.png index 22a2d4ffb16..21eb7a7d6bd 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_VAreaStep.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.blf index b64183b8419..ffa028122a3 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - VBar bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + VBar bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[200, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - VBar bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + VBar bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] Figure bbox=[400, 0, 200, 300] Canvas bbox=[0, 0, 200, 300] - CartesianFrame bbox=[20, 27, 175, 251] - GlyphRenderer bbox=[28, 38, 159, 229] - VBar bbox=[28, 38, 159, 229] + CartesianFrame bbox=[20, 25, 175, 253] + GlyphRenderer bbox=[28, 37, 159, 230] + VBar bbox=[28, 37, 159, 230] LinearAxis bbox=[20, 278, 175, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 175, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.png index b886f9c651a..0a8b42030cf 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_VBar.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.blf index 3c58fbacea1..1aabcffcefb 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, -4, 200, 282] - Wedge bbox=[29, -4, 200, 282] - GlyphRenderer bbox=[118, -4, 199, 282] - Wedge bbox=[118, -4, 199, 282] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, -7, 200, 285] + Wedge bbox=[29, -7, 200, 285] + GlyphRenderer bbox=[118, -7, 199, 285] + Wedge bbox=[118, -7, 199, 285] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, -4, 200, 282] - Wedge bbox=[29, -4, 200, 282] - GlyphRenderer bbox=[118, -4, 199, 282] - Wedge bbox=[118, -4, 199, 282] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, -7, 200, 285] + Wedge bbox=[29, -7, 200, 285] + GlyphRenderer bbox=[118, -7, 199, 285] + Wedge bbox=[118, -7, 199, 285] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, -4, 200, 282] - Wedge bbox=[29, -4, 200, 282] - GlyphRenderer bbox=[118, -4, 199, 282] - Wedge bbox=[118, -4, 199, 282] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, -7, 200, 285] + Wedge bbox=[29, -7, 200, 285] + GlyphRenderer bbox=[118, -7, 199, 285] + Wedge bbox=[118, -7, 199, 285] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.png index abd01dbc1a6..8263f5488f8 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.blf index 3c58fbacea1..1aabcffcefb 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, -4, 200, 282] - Wedge bbox=[29, -4, 200, 282] - GlyphRenderer bbox=[118, -4, 199, 282] - Wedge bbox=[118, -4, 199, 282] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, -7, 200, 285] + Wedge bbox=[29, -7, 200, 285] + GlyphRenderer bbox=[118, -7, 199, 285] + Wedge bbox=[118, -7, 199, 285] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, -4, 200, 282] - Wedge bbox=[29, -4, 200, 282] - GlyphRenderer bbox=[118, -4, 199, 282] - Wedge bbox=[118, -4, 199, 282] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, -7, 200, 285] + Wedge bbox=[29, -7, 200, 285] + GlyphRenderer bbox=[118, -7, 199, 285] + Wedge bbox=[118, -7, 199, 285] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[29, -4, 200, 282] - Wedge bbox=[29, -4, 200, 282] - GlyphRenderer bbox=[118, -4, 199, 282] - Wedge bbox=[118, -4, 199, 282] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[29, -7, 200, 285] + Wedge bbox=[29, -7, 200, 285] + GlyphRenderer bbox=[118, -7, 199, 285] + Wedge bbox=[118, -7, 199, 285] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.png index 064aee0d186..085f0247643 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_Wedge_with_angle_range_23..135.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.blf index 0280a64e37a..4f1aa032abf 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.blf @@ -1,223 +1,223 @@ Row bbox=[0, 0, 1200, 800] Figure bbox=[0, 0, 400, 800] Canvas bbox=[0, 0, 400, 800] - CartesianFrame bbox=[26, 27, 369, 751] + CartesianFrame bbox=[26, 25, 369, 753] GlyphRenderer bbox=[43, 713, 163, 31] Quad bbox=[43, 713, 163, 31] GlyphRenderer bbox=[215, 713, 163, 31] Quad bbox=[215, 713, 163, 31] - GlyphRenderer bbox=[43, 673, 163, 30] - Quad bbox=[43, 673, 163, 30] - GlyphRenderer bbox=[215, 673, 163, 30] - Quad bbox=[215, 673, 163, 30] - GlyphRenderer bbox=[43, 632, 163, 30] - Quad bbox=[43, 632, 163, 30] - GlyphRenderer bbox=[215, 632, 163, 30] - Quad bbox=[215, 632, 163, 30] - GlyphRenderer bbox=[43, 591, 163, 31] - Quad bbox=[43, 591, 163, 31] - GlyphRenderer bbox=[215, 591, 163, 31] - Quad bbox=[215, 591, 163, 31] - GlyphRenderer bbox=[43, 550, 163, 31] - Quad bbox=[43, 550, 163, 31] - GlyphRenderer bbox=[215, 550, 163, 31] - Quad bbox=[215, 550, 163, 31] - GlyphRenderer bbox=[43, 509, 163, 31] - Quad bbox=[43, 509, 163, 31] - GlyphRenderer bbox=[215, 509, 163, 31] - Quad bbox=[215, 509, 163, 31] - GlyphRenderer bbox=[43, 469, 163, 30] - Quad bbox=[43, 469, 163, 30] - GlyphRenderer bbox=[215, 469, 163, 30] - Quad bbox=[215, 469, 163, 30] - GlyphRenderer bbox=[43, 428, 163, 31] - Quad bbox=[43, 428, 163, 31] - GlyphRenderer bbox=[215, 428, 163, 31] - Quad bbox=[215, 428, 163, 31] - GlyphRenderer bbox=[43, 387, 163, 31] - Quad bbox=[43, 387, 163, 31] - GlyphRenderer bbox=[215, 387, 163, 31] - Quad bbox=[215, 387, 163, 31] - GlyphRenderer bbox=[43, 346, 163, 31] - Quad bbox=[43, 346, 163, 31] - GlyphRenderer bbox=[215, 346, 163, 31] - Quad bbox=[215, 346, 163, 31] - GlyphRenderer bbox=[43, 306, 163, 30] - Quad bbox=[43, 306, 163, 30] - GlyphRenderer bbox=[215, 306, 163, 30] - Quad bbox=[215, 306, 163, 30] - GlyphRenderer bbox=[43, 265, 163, 31] - Quad bbox=[43, 265, 163, 31] - GlyphRenderer bbox=[215, 265, 163, 31] - Quad bbox=[215, 265, 163, 31] - GlyphRenderer bbox=[43, 224, 163, 31] - Quad bbox=[43, 224, 163, 31] - GlyphRenderer bbox=[215, 224, 163, 31] - Quad bbox=[215, 224, 163, 31] - GlyphRenderer bbox=[43, 183, 163, 31] - Quad bbox=[43, 183, 163, 31] - GlyphRenderer bbox=[215, 183, 163, 31] - Quad bbox=[215, 183, 163, 31] - GlyphRenderer bbox=[43, 143, 163, 30] - Quad bbox=[43, 143, 163, 30] - GlyphRenderer bbox=[215, 143, 163, 30] - Quad bbox=[215, 143, 163, 30] - GlyphRenderer bbox=[43, 102, 163, 30] - Quad bbox=[43, 102, 163, 30] - GlyphRenderer bbox=[215, 102, 163, 30] - Quad bbox=[215, 102, 163, 30] - GlyphRenderer bbox=[43, 61, 163, 31] - Quad bbox=[43, 61, 163, 31] - GlyphRenderer bbox=[215, 61, 163, 31] - Quad bbox=[215, 61, 163, 31] + GlyphRenderer bbox=[43, 672, 163, 31] + Quad bbox=[43, 672, 163, 31] + GlyphRenderer bbox=[215, 672, 163, 31] + Quad bbox=[215, 672, 163, 31] + GlyphRenderer bbox=[43, 631, 163, 31] + Quad bbox=[43, 631, 163, 31] + GlyphRenderer bbox=[215, 631, 163, 31] + Quad bbox=[215, 631, 163, 31] + GlyphRenderer bbox=[43, 591, 163, 30] + Quad bbox=[43, 591, 163, 30] + GlyphRenderer bbox=[215, 591, 163, 30] + Quad bbox=[215, 591, 163, 30] + GlyphRenderer bbox=[43, 550, 163, 30] + Quad bbox=[43, 550, 163, 30] + GlyphRenderer bbox=[215, 550, 163, 30] + Quad bbox=[215, 550, 163, 30] + GlyphRenderer bbox=[43, 509, 163, 30] + Quad bbox=[43, 509, 163, 30] + GlyphRenderer bbox=[215, 509, 163, 30] + Quad bbox=[215, 509, 163, 30] + GlyphRenderer bbox=[43, 468, 163, 31] + Quad bbox=[43, 468, 163, 31] + GlyphRenderer bbox=[215, 468, 163, 31] + Quad bbox=[215, 468, 163, 31] + GlyphRenderer bbox=[43, 427, 163, 31] + Quad bbox=[43, 427, 163, 31] + GlyphRenderer bbox=[215, 427, 163, 31] + Quad bbox=[215, 427, 163, 31] + GlyphRenderer bbox=[43, 386, 163, 31] + Quad bbox=[43, 386, 163, 31] + GlyphRenderer bbox=[215, 386, 163, 31] + Quad bbox=[215, 386, 163, 31] + GlyphRenderer bbox=[43, 345, 163, 31] + Quad bbox=[43, 345, 163, 31] + GlyphRenderer bbox=[215, 345, 163, 31] + Quad bbox=[215, 345, 163, 31] + GlyphRenderer bbox=[43, 304, 163, 31] + Quad bbox=[43, 304, 163, 31] + GlyphRenderer bbox=[215, 304, 163, 31] + Quad bbox=[215, 304, 163, 31] + GlyphRenderer bbox=[43, 264, 163, 30] + Quad bbox=[43, 264, 163, 30] + GlyphRenderer bbox=[215, 264, 163, 30] + Quad bbox=[215, 264, 163, 30] + GlyphRenderer bbox=[43, 223, 163, 30] + Quad bbox=[43, 223, 163, 30] + GlyphRenderer bbox=[215, 223, 163, 30] + Quad bbox=[215, 223, 163, 30] + GlyphRenderer bbox=[43, 182, 163, 30] + Quad bbox=[43, 182, 163, 30] + GlyphRenderer bbox=[215, 182, 163, 30] + Quad bbox=[215, 182, 163, 30] + GlyphRenderer bbox=[43, 141, 163, 31] + Quad bbox=[43, 141, 163, 31] + GlyphRenderer bbox=[215, 141, 163, 31] + Quad bbox=[215, 141, 163, 31] + GlyphRenderer bbox=[43, 100, 163, 31] + Quad bbox=[43, 100, 163, 31] + GlyphRenderer bbox=[215, 100, 163, 31] + Quad bbox=[215, 100, 163, 31] + GlyphRenderer bbox=[43, 59, 163, 31] + Quad bbox=[43, 59, 163, 31] + GlyphRenderer bbox=[215, 59, 163, 31] + Quad bbox=[215, 59, 163, 31] LinearAxis bbox=[26, 778, 369, 22] - LinearAxis bbox=[0, 27, 26, 751] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 753] + Title bbox=[26, 0, 369, 25] Figure bbox=[400, 0, 400, 800] Canvas bbox=[0, 0, 400, 800] - CartesianFrame bbox=[26, 27, 369, 751] + CartesianFrame bbox=[26, 25, 369, 753] GlyphRenderer bbox=[43, 713, 163, 31] Quad bbox=[43, 713, 163, 31] GlyphRenderer bbox=[215, 713, 163, 31] Quad bbox=[215, 713, 163, 31] - GlyphRenderer bbox=[43, 673, 163, 30] - Quad bbox=[43, 673, 163, 30] - GlyphRenderer bbox=[215, 673, 163, 30] - Quad bbox=[215, 673, 163, 30] - GlyphRenderer bbox=[43, 632, 163, 30] - Quad bbox=[43, 632, 163, 30] - GlyphRenderer bbox=[215, 632, 163, 30] - Quad bbox=[215, 632, 163, 30] - GlyphRenderer bbox=[43, 591, 163, 31] - Quad bbox=[43, 591, 163, 31] - GlyphRenderer bbox=[215, 591, 163, 31] - Quad bbox=[215, 591, 163, 31] - GlyphRenderer bbox=[43, 550, 163, 31] - Quad bbox=[43, 550, 163, 31] - GlyphRenderer bbox=[215, 550, 163, 31] - Quad bbox=[215, 550, 163, 31] - GlyphRenderer bbox=[43, 509, 163, 31] - Quad bbox=[43, 509, 163, 31] - GlyphRenderer bbox=[215, 509, 163, 31] - Quad bbox=[215, 509, 163, 31] - GlyphRenderer bbox=[43, 469, 163, 30] - Quad bbox=[43, 469, 163, 30] - GlyphRenderer bbox=[215, 469, 163, 30] - Quad bbox=[215, 469, 163, 30] - GlyphRenderer bbox=[43, 428, 163, 31] - Quad bbox=[43, 428, 163, 31] - GlyphRenderer bbox=[215, 428, 163, 31] - Quad bbox=[215, 428, 163, 31] - GlyphRenderer bbox=[43, 387, 163, 31] - Quad bbox=[43, 387, 163, 31] - GlyphRenderer bbox=[215, 387, 163, 31] - Quad bbox=[215, 387, 163, 31] - GlyphRenderer bbox=[43, 346, 163, 31] - Quad bbox=[43, 346, 163, 31] - GlyphRenderer bbox=[215, 346, 163, 31] - Quad bbox=[215, 346, 163, 31] - GlyphRenderer bbox=[43, 306, 163, 30] - Quad bbox=[43, 306, 163, 30] - GlyphRenderer bbox=[215, 306, 163, 30] - Quad bbox=[215, 306, 163, 30] - GlyphRenderer bbox=[43, 265, 163, 31] - Quad bbox=[43, 265, 163, 31] - GlyphRenderer bbox=[215, 265, 163, 31] - Quad bbox=[215, 265, 163, 31] - GlyphRenderer bbox=[43, 224, 163, 31] - Quad bbox=[43, 224, 163, 31] - GlyphRenderer bbox=[215, 224, 163, 31] - Quad bbox=[215, 224, 163, 31] - GlyphRenderer bbox=[43, 183, 163, 31] - Quad bbox=[43, 183, 163, 31] - GlyphRenderer bbox=[215, 183, 163, 31] - Quad bbox=[215, 183, 163, 31] - GlyphRenderer bbox=[43, 143, 163, 30] - Quad bbox=[43, 143, 163, 30] - GlyphRenderer bbox=[215, 143, 163, 30] - Quad bbox=[215, 143, 163, 30] - GlyphRenderer bbox=[43, 102, 163, 30] - Quad bbox=[43, 102, 163, 30] - GlyphRenderer bbox=[215, 102, 163, 30] - Quad bbox=[215, 102, 163, 30] - GlyphRenderer bbox=[43, 61, 163, 31] - Quad bbox=[43, 61, 163, 31] - GlyphRenderer bbox=[215, 61, 163, 31] - Quad bbox=[215, 61, 163, 31] + GlyphRenderer bbox=[43, 672, 163, 31] + Quad bbox=[43, 672, 163, 31] + GlyphRenderer bbox=[215, 672, 163, 31] + Quad bbox=[215, 672, 163, 31] + GlyphRenderer bbox=[43, 631, 163, 31] + Quad bbox=[43, 631, 163, 31] + GlyphRenderer bbox=[215, 631, 163, 31] + Quad bbox=[215, 631, 163, 31] + GlyphRenderer bbox=[43, 591, 163, 30] + Quad bbox=[43, 591, 163, 30] + GlyphRenderer bbox=[215, 591, 163, 30] + Quad bbox=[215, 591, 163, 30] + GlyphRenderer bbox=[43, 550, 163, 30] + Quad bbox=[43, 550, 163, 30] + GlyphRenderer bbox=[215, 550, 163, 30] + Quad bbox=[215, 550, 163, 30] + GlyphRenderer bbox=[43, 509, 163, 30] + Quad bbox=[43, 509, 163, 30] + GlyphRenderer bbox=[215, 509, 163, 30] + Quad bbox=[215, 509, 163, 30] + GlyphRenderer bbox=[43, 468, 163, 31] + Quad bbox=[43, 468, 163, 31] + GlyphRenderer bbox=[215, 468, 163, 31] + Quad bbox=[215, 468, 163, 31] + GlyphRenderer bbox=[43, 427, 163, 31] + Quad bbox=[43, 427, 163, 31] + GlyphRenderer bbox=[215, 427, 163, 31] + Quad bbox=[215, 427, 163, 31] + GlyphRenderer bbox=[43, 386, 163, 31] + Quad bbox=[43, 386, 163, 31] + GlyphRenderer bbox=[215, 386, 163, 31] + Quad bbox=[215, 386, 163, 31] + GlyphRenderer bbox=[43, 345, 163, 31] + Quad bbox=[43, 345, 163, 31] + GlyphRenderer bbox=[215, 345, 163, 31] + Quad bbox=[215, 345, 163, 31] + GlyphRenderer bbox=[43, 304, 163, 31] + Quad bbox=[43, 304, 163, 31] + GlyphRenderer bbox=[215, 304, 163, 31] + Quad bbox=[215, 304, 163, 31] + GlyphRenderer bbox=[43, 264, 163, 30] + Quad bbox=[43, 264, 163, 30] + GlyphRenderer bbox=[215, 264, 163, 30] + Quad bbox=[215, 264, 163, 30] + GlyphRenderer bbox=[43, 223, 163, 30] + Quad bbox=[43, 223, 163, 30] + GlyphRenderer bbox=[215, 223, 163, 30] + Quad bbox=[215, 223, 163, 30] + GlyphRenderer bbox=[43, 182, 163, 30] + Quad bbox=[43, 182, 163, 30] + GlyphRenderer bbox=[215, 182, 163, 30] + Quad bbox=[215, 182, 163, 30] + GlyphRenderer bbox=[43, 141, 163, 31] + Quad bbox=[43, 141, 163, 31] + GlyphRenderer bbox=[215, 141, 163, 31] + Quad bbox=[215, 141, 163, 31] + GlyphRenderer bbox=[43, 100, 163, 31] + Quad bbox=[43, 100, 163, 31] + GlyphRenderer bbox=[215, 100, 163, 31] + Quad bbox=[215, 100, 163, 31] + GlyphRenderer bbox=[43, 59, 163, 31] + Quad bbox=[43, 59, 163, 31] + GlyphRenderer bbox=[215, 59, 163, 31] + Quad bbox=[215, 59, 163, 31] LinearAxis bbox=[26, 778, 369, 22] - LinearAxis bbox=[0, 27, 26, 751] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 753] + Title bbox=[26, 0, 369, 25] Figure bbox=[800, 0, 400, 800] Canvas bbox=[0, 0, 400, 800] - CartesianFrame bbox=[26, 27, 369, 751] + CartesianFrame bbox=[26, 25, 369, 753] GlyphRenderer bbox=[43, 713, 163, 31] Quad bbox=[43, 713, 163, 31] GlyphRenderer bbox=[215, 713, 163, 31] Quad bbox=[215, 713, 163, 31] - GlyphRenderer bbox=[43, 673, 163, 30] - Quad bbox=[43, 673, 163, 30] - GlyphRenderer bbox=[215, 673, 163, 30] - Quad bbox=[215, 673, 163, 30] - GlyphRenderer bbox=[43, 632, 163, 30] - Quad bbox=[43, 632, 163, 30] - GlyphRenderer bbox=[215, 632, 163, 30] - Quad bbox=[215, 632, 163, 30] - GlyphRenderer bbox=[43, 591, 163, 31] - Quad bbox=[43, 591, 163, 31] - GlyphRenderer bbox=[215, 591, 163, 31] - Quad bbox=[215, 591, 163, 31] - GlyphRenderer bbox=[43, 550, 163, 31] - Quad bbox=[43, 550, 163, 31] - GlyphRenderer bbox=[215, 550, 163, 31] - Quad bbox=[215, 550, 163, 31] - GlyphRenderer bbox=[43, 509, 163, 31] - Quad bbox=[43, 509, 163, 31] - GlyphRenderer bbox=[215, 509, 163, 31] - Quad bbox=[215, 509, 163, 31] - GlyphRenderer bbox=[43, 469, 163, 30] - Quad bbox=[43, 469, 163, 30] - GlyphRenderer bbox=[215, 469, 163, 30] - Quad bbox=[215, 469, 163, 30] - GlyphRenderer bbox=[43, 428, 163, 31] - Quad bbox=[43, 428, 163, 31] - GlyphRenderer bbox=[215, 428, 163, 31] - Quad bbox=[215, 428, 163, 31] - GlyphRenderer bbox=[43, 387, 163, 31] - Quad bbox=[43, 387, 163, 31] - GlyphRenderer bbox=[215, 387, 163, 31] - Quad bbox=[215, 387, 163, 31] - GlyphRenderer bbox=[43, 346, 163, 31] - Quad bbox=[43, 346, 163, 31] - GlyphRenderer bbox=[215, 346, 163, 31] - Quad bbox=[215, 346, 163, 31] - GlyphRenderer bbox=[43, 306, 163, 30] - Quad bbox=[43, 306, 163, 30] - GlyphRenderer bbox=[215, 306, 163, 30] - Quad bbox=[215, 306, 163, 30] - GlyphRenderer bbox=[43, 265, 163, 31] - Quad bbox=[43, 265, 163, 31] - GlyphRenderer bbox=[215, 265, 163, 31] - Quad bbox=[215, 265, 163, 31] - GlyphRenderer bbox=[43, 224, 163, 31] - Quad bbox=[43, 224, 163, 31] - GlyphRenderer bbox=[215, 224, 163, 31] - Quad bbox=[215, 224, 163, 31] - GlyphRenderer bbox=[43, 183, 163, 31] - Quad bbox=[43, 183, 163, 31] - GlyphRenderer bbox=[215, 183, 163, 31] - Quad bbox=[215, 183, 163, 31] - GlyphRenderer bbox=[43, 143, 163, 30] - Quad bbox=[43, 143, 163, 30] - GlyphRenderer bbox=[215, 143, 163, 30] - Quad bbox=[215, 143, 163, 30] - GlyphRenderer bbox=[43, 102, 163, 30] - Quad bbox=[43, 102, 163, 30] - GlyphRenderer bbox=[215, 102, 163, 30] - Quad bbox=[215, 102, 163, 30] - GlyphRenderer bbox=[43, 61, 163, 31] - Quad bbox=[43, 61, 163, 31] - GlyphRenderer bbox=[215, 61, 163, 31] - Quad bbox=[215, 61, 163, 31] + GlyphRenderer bbox=[43, 672, 163, 31] + Quad bbox=[43, 672, 163, 31] + GlyphRenderer bbox=[215, 672, 163, 31] + Quad bbox=[215, 672, 163, 31] + GlyphRenderer bbox=[43, 631, 163, 31] + Quad bbox=[43, 631, 163, 31] + GlyphRenderer bbox=[215, 631, 163, 31] + Quad bbox=[215, 631, 163, 31] + GlyphRenderer bbox=[43, 591, 163, 30] + Quad bbox=[43, 591, 163, 30] + GlyphRenderer bbox=[215, 591, 163, 30] + Quad bbox=[215, 591, 163, 30] + GlyphRenderer bbox=[43, 550, 163, 30] + Quad bbox=[43, 550, 163, 30] + GlyphRenderer bbox=[215, 550, 163, 30] + Quad bbox=[215, 550, 163, 30] + GlyphRenderer bbox=[43, 509, 163, 30] + Quad bbox=[43, 509, 163, 30] + GlyphRenderer bbox=[215, 509, 163, 30] + Quad bbox=[215, 509, 163, 30] + GlyphRenderer bbox=[43, 468, 163, 31] + Quad bbox=[43, 468, 163, 31] + GlyphRenderer bbox=[215, 468, 163, 31] + Quad bbox=[215, 468, 163, 31] + GlyphRenderer bbox=[43, 427, 163, 31] + Quad bbox=[43, 427, 163, 31] + GlyphRenderer bbox=[215, 427, 163, 31] + Quad bbox=[215, 427, 163, 31] + GlyphRenderer bbox=[43, 386, 163, 31] + Quad bbox=[43, 386, 163, 31] + GlyphRenderer bbox=[215, 386, 163, 31] + Quad bbox=[215, 386, 163, 31] + GlyphRenderer bbox=[43, 345, 163, 31] + Quad bbox=[43, 345, 163, 31] + GlyphRenderer bbox=[215, 345, 163, 31] + Quad bbox=[215, 345, 163, 31] + GlyphRenderer bbox=[43, 304, 163, 31] + Quad bbox=[43, 304, 163, 31] + GlyphRenderer bbox=[215, 304, 163, 31] + Quad bbox=[215, 304, 163, 31] + GlyphRenderer bbox=[43, 264, 163, 30] + Quad bbox=[43, 264, 163, 30] + GlyphRenderer bbox=[215, 264, 163, 30] + Quad bbox=[215, 264, 163, 30] + GlyphRenderer bbox=[43, 223, 163, 30] + Quad bbox=[43, 223, 163, 30] + GlyphRenderer bbox=[215, 223, 163, 30] + Quad bbox=[215, 223, 163, 30] + GlyphRenderer bbox=[43, 182, 163, 30] + Quad bbox=[43, 182, 163, 30] + GlyphRenderer bbox=[215, 182, 163, 30] + Quad bbox=[215, 182, 163, 30] + GlyphRenderer bbox=[43, 141, 163, 31] + Quad bbox=[43, 141, 163, 31] + GlyphRenderer bbox=[215, 141, 163, 31] + Quad bbox=[215, 141, 163, 31] + GlyphRenderer bbox=[43, 100, 163, 31] + Quad bbox=[43, 100, 163, 31] + GlyphRenderer bbox=[215, 100, 163, 31] + Quad bbox=[215, 100, 163, 31] + GlyphRenderer bbox=[43, 59, 163, 31] + Quad bbox=[43, 59, 163, 31] + GlyphRenderer bbox=[215, 59, 163, 31] + Quad bbox=[215, 59, 163, 31] LinearAxis bbox=[26, 778, 369, 22] - LinearAxis bbox=[0, 27, 26, 751] - Title bbox=[26, 0, 369, 27] + LinearAxis bbox=[0, 25, 26, 753] + Title bbox=[26, 0, 369, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.png index 02325520997..63c8bb3f286 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_fill_with_hatch_patterns.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.blf index 928dd2c9dcd..6ccc45a2175 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.blf @@ -1,31 +1,31 @@ Row bbox=[0, 0, 450, 300] Figure bbox=[0, 0, 150, 300] Canvas bbox=[0, 0, 150, 300] - CartesianFrame bbox=[36, 27, 109, 251] - GlyphRenderer bbox=[41, 159, 99, 113] - Wedge bbox=[41, 159, 99, 113] - GlyphRenderer bbox=[41, 33, 99, 113] - Wedge bbox=[41, 33, 99, 113] + CartesianFrame bbox=[36, 25, 109, 253] + GlyphRenderer bbox=[41, 158, 99, 114] + Wedge bbox=[41, 158, 99, 114] + GlyphRenderer bbox=[41, 31, 99, 114] + Wedge bbox=[41, 31, 99, 114] LinearAxis bbox=[36, 278, 109, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 109, 25] Figure bbox=[150, 0, 150, 300] Canvas bbox=[0, 0, 150, 300] - CartesianFrame bbox=[36, 27, 109, 251] - GlyphRenderer bbox=[41, 159, 99, 113] - Wedge bbox=[41, 159, 99, 113] - GlyphRenderer bbox=[41, 33, 99, 113] - Wedge bbox=[41, 33, 99, 113] + CartesianFrame bbox=[36, 25, 109, 253] + GlyphRenderer bbox=[41, 158, 99, 114] + Wedge bbox=[41, 158, 99, 114] + GlyphRenderer bbox=[41, 31, 99, 114] + Wedge bbox=[41, 31, 99, 114] LinearAxis bbox=[36, 278, 109, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 109, 25] Figure bbox=[300, 0, 150, 300] Canvas bbox=[0, 0, 150, 300] - CartesianFrame bbox=[36, 27, 109, 251] - GlyphRenderer bbox=[41, 159, 99, 113] - Wedge bbox=[41, 159, 99, 113] - GlyphRenderer bbox=[41, 33, 99, 113] - Wedge bbox=[41, 33, 99, 113] + CartesianFrame bbox=[36, 25, 109, 253] + GlyphRenderer bbox=[41, 158, 99, 114] + Wedge bbox=[41, 158, 99, 114] + GlyphRenderer bbox=[41, 31, 99, 114] + Wedge bbox=[41, 31, 99, 114] LinearAxis bbox=[36, 278, 109, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 109, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 109, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.png index 487cc9f2cd8..78e9d878f5e 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_full_circle_Wedge.png differ diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.blf b/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.blf index 79179ec0a74..26469685909 100644 --- a/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.blf +++ b/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.blf @@ -2,134 +2,134 @@ Column bbox=[0, 0, 1200, 300] Row bbox=[0, 0, 1200, 150] Figure bbox=[0, 0, 400, 150] Canvas bbox=[0, 0, 400, 150] - CartesianFrame bbox=[36, 27, 359, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] + CartesianFrame bbox=[36, 25, 359, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] LinearAxis bbox=[36, 128, 359, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 359, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 359, 25] Figure bbox=[400, 0, 400, 150] Canvas bbox=[0, 0, 400, 150] - CartesianFrame bbox=[36, 27, 359, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] + CartesianFrame bbox=[36, 25, 359, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] LinearAxis bbox=[36, 128, 359, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 359, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 359, 25] Figure bbox=[800, 0, 400, 150] Canvas bbox=[0, 0, 400, 150] - CartesianFrame bbox=[36, 27, 359, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] + CartesianFrame bbox=[36, 25, 359, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] LinearAxis bbox=[36, 128, 359, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 359, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 359, 25] Row bbox=[0, 150, 1200, 150] Figure bbox=[0, 0, 400, 150] Canvas bbox=[0, 0, 400, 150] - CartesianFrame bbox=[36, 27, 359, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] + CartesianFrame bbox=[36, 25, 359, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] LinearAxis bbox=[36, 128, 359, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 359, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 359, 25] Figure bbox=[400, 0, 400, 150] Canvas bbox=[0, 0, 400, 150] - CartesianFrame bbox=[36, 27, 359, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] + CartesianFrame bbox=[36, 25, 359, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] LinearAxis bbox=[36, 128, 359, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 359, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 359, 25] Figure bbox=[800, 0, 400, 150] Canvas bbox=[0, 0, 400, 150] - CartesianFrame bbox=[36, 27, 359, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] - GlyphRenderer bbox=[36, 27, 90, 101] - AnnularWedge bbox=[36, 27, 90, 101] - GlyphRenderer bbox=[126, 27, 90, 101] - AnnularWedge bbox=[126, 27, 90, 101] - GlyphRenderer bbox=[216, 27, 89, 101] - AnnularWedge bbox=[216, 27, 89, 101] - GlyphRenderer bbox=[305, 27, 90, 101] - AnnularWedge bbox=[305, 27, 90, 101] + CartesianFrame bbox=[36, 25, 359, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] + GlyphRenderer bbox=[36, 25, 90, 103] + AnnularWedge bbox=[36, 25, 90, 103] + GlyphRenderer bbox=[126, 25, 90, 103] + AnnularWedge bbox=[126, 25, 90, 103] + GlyphRenderer bbox=[216, 25, 89, 103] + AnnularWedge bbox=[216, 25, 89, 103] + GlyphRenderer bbox=[305, 25, 90, 103] + AnnularWedge bbox=[305, 25, 90, 103] LinearAxis bbox=[36, 128, 359, 22] - LinearAxis bbox=[0, 27, 36, 101] - Title bbox=[36, 0, 359, 27] + LinearAxis bbox=[0, 25, 36, 103] + Title bbox=[36, 0, 359, 25] diff --git a/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.png b/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.png index dfae3d8208e..3a03a250462 100644 Binary files a/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.png and b/bokehjs/test/baselines/linux/Glyph_models__should_support_rotation_with_all_angle_units.png differ diff --git a/bokehjs/test/baselines/linux/GridBox__should_allow_10x20_grids_of_buttons.png b/bokehjs/test/baselines/linux/GridBox__should_allow_10x20_grids_of_buttons.png index 1915362be40..13bf7ef89b8 100644 Binary files a/bokehjs/test/baselines/linux/GridBox__should_allow_10x20_grids_of_buttons.png and b/bokehjs/test/baselines/linux/GridBox__should_allow_10x20_grids_of_buttons.png differ diff --git a/bokehjs/test/baselines/linux/GridBox__should_allow_2x2_grid_with_mixed_frame_alignment.png b/bokehjs/test/baselines/linux/GridBox__should_allow_2x2_grid_with_mixed_frame_alignment.png index b7fe642f205..a6589be4d92 100644 Binary files a/bokehjs/test/baselines/linux/GridBox__should_allow_2x2_grid_with_mixed_frame_alignment.png and b/bokehjs/test/baselines/linux/GridBox__should_allow_2x2_grid_with_mixed_frame_alignment.png differ diff --git a/bokehjs/test/baselines/linux/Grid__should_support_cross_bounds.png b/bokehjs/test/baselines/linux/Grid__should_support_cross_bounds.png index 7eab692894f..e148f31afba 100644 Binary files a/bokehjs/test/baselines/linux/Grid__should_support_cross_bounds.png and b/bokehjs/test/baselines/linux/Grid__should_support_cross_bounds.png differ diff --git a/bokehjs/test/baselines/linux/GroupBox__should_allow_changing_disabled_state_with_a_checkbox.png b/bokehjs/test/baselines/linux/GroupBox__should_allow_changing_disabled_state_with_a_checkbox.png index 735ee534ffa..4c783582366 100644 Binary files a/bokehjs/test/baselines/linux/GroupBox__should_allow_changing_disabled_state_with_a_checkbox.png and b/bokehjs/test/baselines/linux/GroupBox__should_allow_changing_disabled_state_with_a_checkbox.png differ diff --git a/bokehjs/test/baselines/linux/GroupBox__should_allow_multiple_TextInput_widgets.png b/bokehjs/test/baselines/linux/GroupBox__should_allow_multiple_TextInput_widgets.png index e169d51469f..840719f5410 100644 Binary files a/bokehjs/test/baselines/linux/GroupBox__should_allow_multiple_TextInput_widgets.png and b/bokehjs/test/baselines/linux/GroupBox__should_allow_multiple_TextInput_widgets.png differ diff --git a/bokehjs/test/baselines/linux/HBox__should_allow_3_plots_of_200x200_size.png b/bokehjs/test/baselines/linux/HBox__should_allow_3_plots_of_200x200_size.png index 91749875af2..aa00a28e259 100644 Binary files a/bokehjs/test/baselines/linux/HBox__should_allow_3_plots_of_200x200_size.png and b/bokehjs/test/baselines/linux/HBox__should_allow_3_plots_of_200x200_size.png differ diff --git a/bokehjs/test/baselines/linux/HTMLLabel_annotation__should_allow_overriding_properties_with_CSS_stylesheets.png b/bokehjs/test/baselines/linux/HTMLLabel_annotation__should_allow_overriding_properties_with_CSS_stylesheets.png index f5a8aa109f9..911463ce5e0 100644 Binary files a/bokehjs/test/baselines/linux/HTMLLabel_annotation__should_allow_overriding_properties_with_CSS_stylesheets.png and b/bokehjs/test/baselines/linux/HTMLLabel_annotation__should_allow_overriding_properties_with_CSS_stylesheets.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.blf index c4e35aac08a..927db23d0f5 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[57, 38, 207, 229] - HexTile bbox=[57, 38, 207, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[56, 37, 209, 230] + HexTile bbox=[56, 37, 209, 230] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.png index 1aa48d9611e..78d5b84c825 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.blf index 3c6e0e752ab..8726f4b48c4 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 85, 245, 135] - HexTile bbox=[38, 85, 245, 135] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 84, 245, 135] + HexTile bbox=[38, 84, 245, 135] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.png index 7583352522a..c2def08c0b1 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=0.5.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.blf index dde8f60b117..7644594bacc 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[112, 38, 104, 229] - HexTile bbox=[112, 38, 104, 229] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[112, 37, 104, 230] + HexTile bbox=[112, 37, 104, 230] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.png index d8b4e75de60..bc276723b3a 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_and_aspect_scale=2.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.blf index 74586141505..ab1fed08819 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[57, 38, 207, 229] - HexTile bbox=[57, 38, 207, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[56, 37, 209, 230] + HexTile bbox=[56, 37, 209, 230] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[57, 38, 207, 229] - HexTile bbox=[57, 38, 207, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[56, 37, 209, 230] + HexTile bbox=[56, 37, 209, 230] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[57, 38, 207, 229] - HexTile bbox=[57, 38, 207, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[56, 37, 209, 230] + HexTile bbox=[56, 37, 209, 230] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.png index 824a71e1ec4..3b16a854062 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_hatch_patterns.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.blf index 21ac7cb8a79..ea28c6ec40c 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[60, 38, 208, 229] - HexTile bbox=[60, 38, 208, 229] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[60, 37, 208, 230] + HexTile bbox=[60, 37, 208, 230] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.png index b7ba5ba033f..5d8c34438e6 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'flattop'_orientation_with_size=10.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.blf index 1af10fd400e..265197fbce7 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 42, 245, 221] - HexTile bbox=[38, 42, 245, 221] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 41, 245, 221] + HexTile bbox=[38, 41, 245, 221] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.png index cff34380b7d..3819b78c2f9 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.blf index 5873dae003f..c3aa790eda6 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[98, 38, 125, 229] - HexTile bbox=[98, 38, 125, 229] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[97, 37, 127, 230] + HexTile bbox=[97, 37, 127, 230] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.png index 935c6d5aa53..a2246265df6 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_and_aspect_scale=2.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.blf index 6db8cddff02..8e10cc80fa5 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 42, 245, 221] - HexTile bbox=[38, 42, 245, 221] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 41, 245, 221] + HexTile bbox=[38, 41, 245, 221] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 42, 245, 221] - HexTile bbox=[38, 42, 245, 221] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 41, 245, 221] + HexTile bbox=[38, 41, 245, 221] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 42, 245, 221] - HexTile bbox=[38, 42, 245, 221] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 41, 245, 221] + HexTile bbox=[38, 41, 245, 221] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.png index 5a65974592b..32a1c5c72c0 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_hatch_patterns.png differ diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.blf b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.blf index cd8e827703b..89a749accfc 100644 --- a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.blf +++ b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.blf @@ -1,8 +1,8 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 44, 238, 217] - HexTile bbox=[45, 44, 238, 217] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 43, 238, 217] + HexTile bbox=[45, 43, 238, 217] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.png b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.png index 830be1e098b..783765d1f6c 100644 Binary files a/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.png and b/bokehjs/test/baselines/linux/HexTile_glyph__should_support_'pointytop'_orientation_with_size=10.png differ diff --git a/bokehjs/test/baselines/linux/HoverTool__should_support_formatting_with_templated_and_regular_tooltips.png b/bokehjs/test/baselines/linux/HoverTool__should_support_formatting_with_templated_and_regular_tooltips.png index d3b09119613..fc17a636fde 100644 Binary files a/bokehjs/test/baselines/linux/HoverTool__should_support_formatting_with_templated_and_regular_tooltips.png and b/bokehjs/test/baselines/linux/HoverTool__should_support_formatting_with_templated_and_regular_tooltips.png differ diff --git a/bokehjs/test/baselines/linux/HoverTool__support_hover_on_x-axis_when_mode=='vline'.png b/bokehjs/test/baselines/linux/HoverTool__support_hover_on_x-axis_when_mode=='vline'.png index 9949c575065..ccd62cb3b7a 100644 Binary files a/bokehjs/test/baselines/linux/HoverTool__support_hover_on_x-axis_when_mode=='vline'.png and b/bokehjs/test/baselines/linux/HoverTool__support_hover_on_x-axis_when_mode=='vline'.png differ diff --git a/bokehjs/test/baselines/linux/HoverTool__support_hover_on_y-axis_when_mode=='hline'.png b/bokehjs/test/baselines/linux/HoverTool__support_hover_on_y-axis_when_mode=='hline'.png index 92878e742e0..52416059bb9 100644 Binary files a/bokehjs/test/baselines/linux/HoverTool__support_hover_on_y-axis_when_mode=='hline'.png and b/bokehjs/test/baselines/linux/HoverTool__support_hover_on_y-axis_when_mode=='hline'.png differ diff --git a/bokehjs/test/baselines/linux/Icons__should_support_all_icons_defined_in_less_icons.less.png b/bokehjs/test/baselines/linux/Icons__should_support_all_icons_defined_in_less_icons.less.png index d8ea3c6c910..ad86f872e8a 100644 Binary files a/bokehjs/test/baselines/linux/Icons__should_support_all_icons_defined_in_less_icons.less.png and b/bokehjs/test/baselines/linux/Icons__should_support_all_icons_defined_in_less_icons.less.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.png index 710bf739b92..92b6792c6ab 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.png index 4e9eaf12e7b..0b111fc223b 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index b7fa4f19365..f9938a9ad5c 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.png index a9aea616c04..7dd3ccc4646 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__40%,_20%__anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.png index f889f12ae9d..8e453e4fbb1 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.png index 68334c0cb2a..591ce736e88 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 368348747e2..aaa2095e484 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.png index 2c5b23a628a..97f652941ea 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support__center,_20%__anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.png index cb4006ea92f..c7e1a90ed49 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.png index 59a41df90dc..888a192be8b 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 0a12202d146..4e83b65b687 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.png index d529e0cea58..67c158193be 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_center_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.png index a36a6f4f62e..caef7ac29c0 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.png index 041a62e646d..7efba46c972 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 5f5480fa4fa..98a3404e4f2 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.png index 90f754c60a3..ed48061fc09 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_left_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.png index a8c757eb6a8..604284f235e 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.png index 3132cb2c7df..ebc97a43c97 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index a3f430374a8..374edea7ac8 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.png index e058b7c7f86..45e2f69ac3f 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_bottom_right_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.png index 60343841c6f..d1bad63bd4b 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.png index 14e45df6a95..7fc962ed15d 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index cf2ece2bc73..527410d23b3 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.png index c12a4a2b56f..a9522247640 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_center_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.png index 33d2ffe108b..9d7ae75c94e 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.png index 1732dff30db..c9274a79f70 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 58be5e3b404..6aae48436db 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.png index 1ce634c8347..93e3b49b74e 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_left_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.png index 5874be28198..cc1197c17b7 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.png index a3ee6cde206..ef24b1b1441 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 1d2bc1dc2d4..9efb0eecded 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.blf index 96c9811345a..2ef800de172 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[34, 34, 153, 137] - ImageRGBA bbox=[34, 34, 153, 137] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[34, 32, 153, 139] + ImageRGBA bbox=[34, 32, 153, 139] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.png index 2f12dfaff06..edee1e5c31e 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_center_right_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.blf index 9e46fa8f3b3..1a3f5833c7a 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.blf @@ -1,25 +1,25 @@ Column bbox=[0, 0, 350, 300] Figure bbox=[0, 0, 350, 150] Canvas bbox=[0, 0, 350, 150] - CartesianFrame bbox=[29, 27, 316, 101] - GlyphRenderer bbox=[43, 32, 96, 91] - ImageRGBA bbox=[43, 32, 96, 91] - GlyphRenderer bbox=[139, 32, 96, 91] - ImageRGBA bbox=[139, 32, 96, 91] - GlyphRenderer bbox=[235, 32, 96, 91] - ImageRGBA bbox=[235, 32, 96, 91] + CartesianFrame bbox=[29, 25, 316, 103] + GlyphRenderer bbox=[43, 30, 96, 93] + ImageRGBA bbox=[43, 30, 96, 93] + GlyphRenderer bbox=[139, 30, 96, 93] + ImageRGBA bbox=[139, 30, 96, 93] + GlyphRenderer bbox=[235, 30, 96, 93] + ImageRGBA bbox=[235, 30, 96, 93] LinearAxis bbox=[29, 128, 316, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 316, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 316, 25] Figure bbox=[0, 150, 350, 150] Canvas bbox=[0, 0, 350, 150] - CartesianFrame bbox=[29, 27, 316, 101] - GlyphRenderer bbox=[43, 32, 96, 91] - ImageRGBA bbox=[43, 32, 96, 91] - GlyphRenderer bbox=[139, 32, 96, 91] - ImageRGBA bbox=[139, 32, 96, 91] - GlyphRenderer bbox=[235, 32, 96, 91] - ImageRGBA bbox=[235, 32, 96, 91] + CartesianFrame bbox=[29, 25, 316, 103] + GlyphRenderer bbox=[43, 30, 96, 93] + ImageRGBA bbox=[43, 30, 96, 93] + GlyphRenderer bbox=[139, 30, 96, 93] + ImageRGBA bbox=[139, 30, 96, 93] + GlyphRenderer bbox=[235, 30, 96, 93] + ImageRGBA bbox=[235, 30, 96, 93] LinearAxis bbox=[29, 128, 316, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 316, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 316, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.png index 7a0f3c6329c..65d954496bf 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_combine_alpha.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.png index 06118c2ed2b..c28c37c8142 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.png index 3cc8d3d2841..eb8ba14541d 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index d00336a3845..219040bb250 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.png index 3b961071731..94bb8795d3a 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_center_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.png index 727880b3a83..ef080c5169e 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.png index fe24ff94b57..738f347bc79 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 8178e2a31a4..aca0dadb09c 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.png index 5a809aa9b80..6ee0eabc83c 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_left_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.png index 63f181f1eb1..c5c69a77664 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.png index 9324b5049f0..963d7721d32 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png index 5d3c7dbc517..c05838628a4 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_x-axis_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.blf b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.blf index 9e59a3b8ff7..3d658369d49 100644 --- a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.blf +++ b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.blf @@ -2,66 +2,66 @@ Column bbox=[0, 0, 800, 400] Row bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Row bbox=[0, 200, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] - GlyphRenderer bbox=[40, 34, 148, 137] - ImageRGBA bbox=[40, 34, 148, 137] + CartesianFrame bbox=[33, 25, 162, 153] + GlyphRenderer bbox=[40, 32, 148, 139] + ImageRGBA bbox=[40, 32, 148, 139] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.png b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.png index fc27478bde6..84c0e667631 100644 Binary files a/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.png and b/bokehjs/test/baselines/linux/ImageRGBA_glyph__should_support_top_right_anchor_with_all_origins_with_flipped_y-axis.png differ diff --git a/bokehjs/test/baselines/linux/ImageStack_glyph__should_support_hover_tooltip.png b/bokehjs/test/baselines/linux/ImageStack_glyph__should_support_hover_tooltip.png index 50ff9c4c81c..e658a901b1d 100644 Binary files a/bokehjs/test/baselines/linux/ImageStack_glyph__should_support_hover_tooltip.png and b/bokehjs/test/baselines/linux/ImageStack_glyph__should_support_hover_tooltip.png differ diff --git a/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_CSS_rendering.png b/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_CSS_rendering.png index c9ce1d631c1..f8f40dce583 100644 Binary files a/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_CSS_rendering.png and b/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_CSS_rendering.png differ diff --git a/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_canvas_rendering.png b/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_canvas_rendering.png index 8cadbe6a31f..917f1994f8c 100644 Binary files a/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_canvas_rendering.png and b/bokehjs/test/baselines/linux/LabelSet_annotation__should_support_basic_positioning_using_canvas_rendering.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_CSS_rendering.png b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_CSS_rendering.png index 3c794d4f05d..99a09b70f21 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_CSS_rendering.png and b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_CSS_rendering.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_canvas_rendering.png b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_canvas_rendering.png index b4d9bdc8ef0..d74baba976f 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_canvas_rendering.png and b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_using_canvas_rendering.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.blf b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.blf index be0e951ca33..bd64bf1c149 100644 --- a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.blf +++ b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.blf @@ -1,29 +1,29 @@ Row bbox=[0, 0, 1220, 600] Figure bbox=[0, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[130, 131, 366, 343] - Label bbox=[130, 69, 366, 62] - Label bbox=[130, 27, 366, 42] + CartesianFrame bbox=[130, 129, 366, 345] + Label bbox=[130, 67, 366, 62] + Label bbox=[130, 25, 366, 42] LinearAxis bbox=[130, 474, 366, 22] Label bbox=[130, 496, 366, 62] Label bbox=[130, 558, 366, 42] - LinearAxis bbox=[104, 131, 26, 343] - Label bbox=[42, 131, 62, 343] - Label bbox=[0, 131, 42, 343] - Label bbox=[496, 131, 62, 343] - Label bbox=[558, 131, 42, 343] - Title bbox=[130, 0, 366, 27] + LinearAxis bbox=[104, 129, 26, 345] + Label bbox=[42, 129, 62, 345] + Label bbox=[0, 129, 42, 345] + Label bbox=[496, 129, 62, 345] + Label bbox=[558, 129, 42, 345] + Title bbox=[130, 0, 366, 25] Figure bbox=[620, 0, 600, 600] Canvas bbox=[0, 0, 600, 600] - CartesianFrame bbox=[130, 131, 366, 343] - Label bbox=[130, 69, 366, 62] - Label bbox=[130, 27, 366, 42] + CartesianFrame bbox=[130, 129, 366, 345] + Label bbox=[130, 67, 366, 62] + Label bbox=[130, 25, 366, 42] LinearAxis bbox=[130, 474, 366, 22] Label bbox=[130, 496, 366, 62] Label bbox=[130, 558, 366, 42] - LinearAxis bbox=[104, 131, 26, 343] - Label bbox=[42, 131, 62, 343] - Label bbox=[0, 131, 42, 343] - Label bbox=[496, 131, 62, 343] - Label bbox=[558, 131, 42, 343] - Title bbox=[130, 0, 366, 27] + LinearAxis bbox=[104, 129, 26, 345] + Label bbox=[42, 129, 62, 345] + Label bbox=[0, 129, 42, 345] + Label bbox=[496, 129, 62, 345] + Label bbox=[558, 129, 42, 345] + Title bbox=[130, 0, 366, 25] diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.png b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.png index 819f61cec42..b719d5a8b66 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.png and b/bokehjs/test/baselines/linux/Label_annotation__should_support_basic_positioning_with_LaTeX_notation.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=bottom_left.png b/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=bottom_left.png index f4061bff781..7d9788fbe81 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=bottom_left.png and b/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=bottom_left.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=center.png b/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=center.png index d9a18d38bd8..5491bc49fcd 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=center.png and b/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=center.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=top_right.png b/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=top_right.png index 787cfd0befb..e3b1b5df56c 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=top_right.png and b/bokehjs/test/baselines/linux/Label_annotation__should_support_rotation_by_dragging__with_anchor=top_right.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.blf b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.blf index 028ce04cb3a..852cb8edb71 100644 --- a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.blf +++ b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.blf @@ -1,13 +1,13 @@ Row bbox=[0, 0, 600, 110] Figure bbox=[0, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.png b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.png index 6680da71c8d..052f270a0eb 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.png and b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_fallback_to_text_if_MathJax_provider_is_not_available.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.blf b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.blf index 028ce04cb3a..852cb8edb71 100644 --- a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.blf +++ b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.blf @@ -1,13 +1,13 @@ Row bbox=[0, 0, 600, 110] Figure bbox=[0, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.png b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.png index 65a6486946c..b7dcefc30de 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.png and b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_Ascii_notation.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.blf b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.blf index 028ce04cb3a..852cb8edb71 100644 --- a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.blf +++ b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.blf @@ -1,13 +1,13 @@ Row bbox=[0, 0, 600, 110] Figure bbox=[0, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.png b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.png index b41c5af58d2..5dbfd4e8d7f 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.png and b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_LaTeX_notation_with_a_delay_in_loading.png differ diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.blf b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.blf index 028ce04cb3a..852cb8edb71 100644 --- a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.blf +++ b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.blf @@ -1,13 +1,13 @@ Row bbox=[0, 0, 600, 110] Figure bbox=[0, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 110] Canvas bbox=[0, 0, 300, 110] - CartesianFrame bbox=[26, 27, 269, 61] + CartesianFrame bbox=[26, 25, 269, 63] LinearAxis bbox=[26, 88, 269, 22] - LinearAxis bbox=[0, 27, 26, 61] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 63] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.png b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.png index b41c5af58d2..5dbfd4e8d7f 100644 Binary files a/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.png and b/bokehjs/test/baselines/linux/Label_annotation__with_MathText__should_support_MathML_notation.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_height_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_height_correctly.png index 1a38752ab68..eb3a5abf002 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_height_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_height_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_width_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_width_correctly.png index 68dd7b0f6df..2d9eb00befa 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_width_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_glyph_width_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_height_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_height_correctly.png index 1a38752ab68..eb3a5abf002 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_height_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_height_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_width_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_width_correctly.png index 0699c484665..76aefa4e299 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_width_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_label_width_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_labels_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_labels_with_standoff_correctly.png index 68ae2705a60..12693f62ee9 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_labels_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_labels_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_margin_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_margin_correctly.png index 816e68c9aca..6fc8541dd7b 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_margin_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_margin_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_padding_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_padding_correctly.png index 007afa91f92..f779ed15f6c 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_padding_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_padding_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_spacing_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_spacing_correctly.png index 14fda02342a..fb8b402b605 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_spacing_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_display_spacing_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_entire_legend_with_no_visible_items.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_entire_legend_with_no_visible_items.png index e7f5192effc..dee3587f552 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_entire_legend_with_no_visible_items.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_entire_legend_with_no_visible_items.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_one_non-visible_item_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_one_non-visible_item_correctly.png index 357f2376000..633e14db329 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_one_non-visible_item_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_hide_one_non-visible_item_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png index 7c09fa9f413..bc54c8faf86 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png index 87e1e32376c..546eebc2f56 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png index ab0f26df731..e975af69938 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png index a0e2699b30c..ab96652f37b 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_multi-line_labels.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_multi-line_labels.png index 5749b1e289c..a5551419307 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_multi-line_labels.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__should_support_multi-line_labels.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_multi-line_title_correctly.png index b0380654c82..0515117cffd 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_correctly.png index 816e68c9aca..6fc8541dd7b 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png index 0a4924c149d..b667ea498bf 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_multi-line_title_correctly.png index 95e63ee213a..7af3d3a6ab2 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_correctly.png index 1d4e18e2076..9f127ebfc43 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png index b5d5434b574..b74acf52991 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_multi-line_title_correctly.png index 99cabe73624..4b51061f914 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_correctly.png index c54ea2f1962..69dc2089bb5 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png index bf208b9696f..0d7169975a9 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_multi-line_title_correctly.png index fbe0b6f1f2b..fac7ab7c2f8 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_correctly.png index 45f5c7b9687..454ac1377d1 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png index 45c091acd5f..1df3d575fea 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_horizontal_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_height_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_height_correctly.png index 51b178426d7..5ee074b89c7 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_height_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_height_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_width_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_width_correctly.png index 81d68b81741..88b37747650 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_width_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_glyph_width_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_height_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_height_correctly.png index 51b178426d7..5ee074b89c7 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_height_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_height_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_width_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_width_correctly.png index 2f6ae310873..3aa32493717 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_width_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_label_width_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_labels_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_labels_with_standoff_correctly.png index d770258db81..d53d680401a 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_labels_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_labels_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_margin_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_margin_correctly.png index 623af3a6e7f..46259c51cd9 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_margin_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_margin_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_padding_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_padding_correctly.png index 58b886016fa..6ed8b5b623e 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_padding_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_padding_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_spacing_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_spacing_correctly.png index f76f63a165d..904450e8a3c 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_spacing_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_display_spacing_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_entire_legend_with_no_visible_items.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_entire_legend_with_no_visible_items.png index eb325959a9a..62e66ed0743 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_entire_legend_with_no_visible_items.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_entire_legend_with_no_visible_items.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_one_non-visible_item_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_one_non-visible_item_correctly.png index 226778a2026..6d986a0aebd 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_one_non-visible_item_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_hide_one_non-visible_item_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png index b2ee2f67d0c..497cce1d257 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=2_and_ncols=auto.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png index fba6912e118..9841e792308 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=3_and_ncols=auto.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png index 69d9c6799e5..3142982e1ea 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=2.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png index 24804364a2a..0f38256054f 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_grid_layout__with_nrows=auto_and_ncols=3.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_multi-line_labels.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_multi-line_labels.png index ee9b5c7206a..9bca048a343 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_multi-line_labels.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__should_support_multi-line_labels.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_multi-line_title_correctly.png index c779b191099..f3deb1a7046 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_correctly.png index 623af3a6e7f..46259c51cd9 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png index 49299ce5604..3cc522486aa 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=above__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_multi-line_title_correctly.png index b093360b465..5ab2ca254cb 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_correctly.png index 47d39e73fac..05ddbc79f2d 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png index cd3de39c52e..a07e00e7091 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=below__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_multi-line_title_correctly.png index f42a57a3d95..f0669b1320f 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_correctly.png index 2719622485e..1a413850e26 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png index 0790c73937a..cf019c562fe 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=left__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_multi-line_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_multi-line_title_correctly.png index e00b8b5d619..d86d862619d 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_multi-line_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_multi-line_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_correctly.png index cec8fb3f8ce..5223fd75724 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png index d08b2dd6143..6621070dd87 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png and b/bokehjs/test/baselines/linux/Legend_annotation__in_vertical_orientation__with_title_location=right__should_display_title_with_standoff_correctly.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__should_support_LegendItemClick_events.png b/bokehjs/test/baselines/linux/Legend_annotation__should_support_LegendItemClick_events.png index e82791cade4..729c42aa167 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__should_support_LegendItemClick_events.png and b/bokehjs/test/baselines/linux/Legend_annotation__should_support_LegendItemClick_events.png differ diff --git a/bokehjs/test/baselines/linux/Legend_annotation__should_support_various_combinations_of_locations_and_orientations.png b/bokehjs/test/baselines/linux/Legend_annotation__should_support_various_combinations_of_locations_and_orientations.png index 97c3a2cb168..cfda86cd714 100644 Binary files a/bokehjs/test/baselines/linux/Legend_annotation__should_support_various_combinations_of_locations_and_orientations.png and b/bokehjs/test/baselines/linux/Legend_annotation__should_support_various_combinations_of_locations_and_orientations.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.blf index d41059aa554..6d43a0ee240 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.blf @@ -1,7 +1,7 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] + CartesianFrame bbox=[26, 25, 269, 253] GlyphRenderer bbox=[38, 267, 245, 0] Line bbox=[38, 267, 245, 0] GlyphRenderer bbox=[38, 246, 245, 0] @@ -10,28 +10,28 @@ Row bbox=[0, 0, 900, 300] Line bbox=[38, 225, 245, 0] GlyphRenderer bbox=[38, 204, 245, 0] Line bbox=[38, 204, 245, 0] - GlyphRenderer bbox=[38, 184, 245, 0] - Line bbox=[38, 184, 245, 0] - GlyphRenderer bbox=[38, 163, 245, 0] - Line bbox=[38, 163, 245, 0] - GlyphRenderer bbox=[38, 142, 245, 0] - Line bbox=[38, 142, 245, 0] - GlyphRenderer bbox=[38, 121, 245, 0] - Line bbox=[38, 121, 245, 0] - GlyphRenderer bbox=[38, 101, 245, 0] - Line bbox=[38, 101, 245, 0] - GlyphRenderer bbox=[38, 80, 245, 0] - Line bbox=[38, 80, 245, 0] - GlyphRenderer bbox=[38, 59, 245, 0] - Line bbox=[38, 59, 245, 0] - GlyphRenderer bbox=[38, 38, 245, 0] - Line bbox=[38, 38, 245, 0] + GlyphRenderer bbox=[38, 183, 245, 0] + Line bbox=[38, 183, 245, 0] + GlyphRenderer bbox=[38, 162, 245, 0] + Line bbox=[38, 162, 245, 0] + GlyphRenderer bbox=[38, 141, 245, 0] + Line bbox=[38, 141, 245, 0] + GlyphRenderer bbox=[38, 120, 245, 0] + Line bbox=[38, 120, 245, 0] + GlyphRenderer bbox=[38, 99, 245, 0] + Line bbox=[38, 99, 245, 0] + GlyphRenderer bbox=[38, 78, 245, 0] + Line bbox=[38, 78, 245, 0] + GlyphRenderer bbox=[38, 57, 245, 0] + Line bbox=[38, 57, 245, 0] + GlyphRenderer bbox=[38, 37, 245, 0] + Line bbox=[38, 37, 245, 0] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] + CartesianFrame bbox=[26, 25, 269, 253] GlyphRenderer bbox=[38, 267, 245, 0] Line bbox=[38, 267, 245, 0] GlyphRenderer bbox=[38, 246, 245, 0] @@ -40,28 +40,28 @@ Row bbox=[0, 0, 900, 300] Line bbox=[38, 225, 245, 0] GlyphRenderer bbox=[38, 204, 245, 0] Line bbox=[38, 204, 245, 0] - GlyphRenderer bbox=[38, 184, 245, 0] - Line bbox=[38, 184, 245, 0] - GlyphRenderer bbox=[38, 163, 245, 0] - Line bbox=[38, 163, 245, 0] - GlyphRenderer bbox=[38, 142, 245, 0] - Line bbox=[38, 142, 245, 0] - GlyphRenderer bbox=[38, 121, 245, 0] - Line bbox=[38, 121, 245, 0] - GlyphRenderer bbox=[38, 101, 245, 0] - Line bbox=[38, 101, 245, 0] - GlyphRenderer bbox=[38, 80, 245, 0] - Line bbox=[38, 80, 245, 0] - GlyphRenderer bbox=[38, 59, 245, 0] - Line bbox=[38, 59, 245, 0] - GlyphRenderer bbox=[38, 38, 245, 0] - Line bbox=[38, 38, 245, 0] + GlyphRenderer bbox=[38, 183, 245, 0] + Line bbox=[38, 183, 245, 0] + GlyphRenderer bbox=[38, 162, 245, 0] + Line bbox=[38, 162, 245, 0] + GlyphRenderer bbox=[38, 141, 245, 0] + Line bbox=[38, 141, 245, 0] + GlyphRenderer bbox=[38, 120, 245, 0] + Line bbox=[38, 120, 245, 0] + GlyphRenderer bbox=[38, 99, 245, 0] + Line bbox=[38, 99, 245, 0] + GlyphRenderer bbox=[38, 78, 245, 0] + Line bbox=[38, 78, 245, 0] + GlyphRenderer bbox=[38, 57, 245, 0] + Line bbox=[38, 57, 245, 0] + GlyphRenderer bbox=[38, 37, 245, 0] + Line bbox=[38, 37, 245, 0] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] + CartesianFrame bbox=[26, 25, 269, 253] GlyphRenderer bbox=[38, 267, 245, 0] Line bbox=[38, 267, 245, 0] GlyphRenderer bbox=[38, 246, 245, 0] @@ -70,22 +70,22 @@ Row bbox=[0, 0, 900, 300] Line bbox=[38, 225, 245, 0] GlyphRenderer bbox=[38, 204, 245, 0] Line bbox=[38, 204, 245, 0] - GlyphRenderer bbox=[38, 184, 245, 0] - Line bbox=[38, 184, 245, 0] - GlyphRenderer bbox=[38, 163, 245, 0] - Line bbox=[38, 163, 245, 0] - GlyphRenderer bbox=[38, 142, 245, 0] - Line bbox=[38, 142, 245, 0] - GlyphRenderer bbox=[38, 121, 245, 0] - Line bbox=[38, 121, 245, 0] - GlyphRenderer bbox=[38, 101, 245, 0] - Line bbox=[38, 101, 245, 0] - GlyphRenderer bbox=[38, 80, 245, 0] - Line bbox=[38, 80, 245, 0] - GlyphRenderer bbox=[38, 59, 245, 0] - Line bbox=[38, 59, 245, 0] - GlyphRenderer bbox=[38, 38, 245, 0] - Line bbox=[38, 38, 245, 0] + GlyphRenderer bbox=[38, 183, 245, 0] + Line bbox=[38, 183, 245, 0] + GlyphRenderer bbox=[38, 162, 245, 0] + Line bbox=[38, 162, 245, 0] + GlyphRenderer bbox=[38, 141, 245, 0] + Line bbox=[38, 141, 245, 0] + GlyphRenderer bbox=[38, 120, 245, 0] + Line bbox=[38, 120, 245, 0] + GlyphRenderer bbox=[38, 99, 245, 0] + Line bbox=[38, 99, 245, 0] + GlyphRenderer bbox=[38, 78, 245, 0] + Line bbox=[38, 78, 245, 0] + GlyphRenderer bbox=[38, 57, 245, 0] + Line bbox=[38, 57, 245, 0] + GlyphRenderer bbox=[38, 37, 245, 0] + Line bbox=[38, 37, 245, 0] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.png index 0327155571c..a1b84301151 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_180_degree_turns.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.blf index b09c17e13a6..e90c67f7bbd 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[66, 38, 131, 76] - Line bbox=[66, 38, 131, 76] - GlyphRenderer bbox=[74, 52, 131, 75] - Line bbox=[74, 52, 131, 75] - GlyphRenderer bbox=[82, 65, 130, 75] - Line bbox=[82, 65, 130, 75] - GlyphRenderer bbox=[89, 79, 131, 75] - Line bbox=[89, 79, 131, 75] - GlyphRenderer bbox=[45, 146, 157, 27] - Line bbox=[45, 146, 157, 27] - GlyphRenderer bbox=[53, 159, 157, 27] - Line bbox=[53, 159, 157, 27] - GlyphRenderer bbox=[61, 173, 157, 26] - Line bbox=[61, 173, 157, 26] - GlyphRenderer bbox=[68, 186, 158, 27] - Line bbox=[68, 186, 158, 27] - GlyphRenderer bbox=[76, 146, 184, 80] - Line bbox=[76, 146, 184, 80] - GlyphRenderer bbox=[84, 159, 183, 81] - Line bbox=[84, 159, 183, 81] - GlyphRenderer bbox=[92, 173, 183, 80] - Line bbox=[92, 173, 183, 80] - GlyphRenderer bbox=[100, 186, 183, 81] - Line bbox=[100, 186, 183, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[66, 37, 131, 75] + Line bbox=[66, 37, 131, 75] + GlyphRenderer bbox=[74, 50, 131, 76] + Line bbox=[74, 50, 131, 76] + GlyphRenderer bbox=[82, 64, 130, 75] + Line bbox=[82, 64, 130, 75] + GlyphRenderer bbox=[89, 77, 131, 76] + Line bbox=[89, 77, 131, 76] + GlyphRenderer bbox=[45, 145, 157, 27] + Line bbox=[45, 145, 157, 27] + GlyphRenderer bbox=[53, 158, 157, 27] + Line bbox=[53, 158, 157, 27] + GlyphRenderer bbox=[61, 172, 157, 27] + Line bbox=[61, 172, 157, 27] + GlyphRenderer bbox=[68, 185, 158, 27] + Line bbox=[68, 185, 158, 27] + GlyphRenderer bbox=[76, 145, 184, 81] + Line bbox=[76, 145, 184, 81] + GlyphRenderer bbox=[84, 158, 183, 81] + Line bbox=[84, 158, 183, 81] + GlyphRenderer bbox=[92, 172, 183, 81] + Line bbox=[92, 172, 183, 81] + GlyphRenderer bbox=[100, 185, 183, 82] + Line bbox=[100, 185, 183, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[66, 38, 131, 76] - Line bbox=[66, 38, 131, 76] - GlyphRenderer bbox=[74, 52, 131, 75] - Line bbox=[74, 52, 131, 75] - GlyphRenderer bbox=[82, 65, 130, 75] - Line bbox=[82, 65, 130, 75] - GlyphRenderer bbox=[89, 79, 131, 75] - Line bbox=[89, 79, 131, 75] - GlyphRenderer bbox=[45, 146, 157, 27] - Line bbox=[45, 146, 157, 27] - GlyphRenderer bbox=[53, 159, 157, 27] - Line bbox=[53, 159, 157, 27] - GlyphRenderer bbox=[61, 173, 157, 26] - Line bbox=[61, 173, 157, 26] - GlyphRenderer bbox=[68, 186, 158, 27] - Line bbox=[68, 186, 158, 27] - GlyphRenderer bbox=[76, 146, 184, 80] - Line bbox=[76, 146, 184, 80] - GlyphRenderer bbox=[84, 159, 183, 81] - Line bbox=[84, 159, 183, 81] - GlyphRenderer bbox=[92, 173, 183, 80] - Line bbox=[92, 173, 183, 80] - GlyphRenderer bbox=[100, 186, 183, 81] - Line bbox=[100, 186, 183, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[66, 37, 131, 75] + Line bbox=[66, 37, 131, 75] + GlyphRenderer bbox=[74, 50, 131, 76] + Line bbox=[74, 50, 131, 76] + GlyphRenderer bbox=[82, 64, 130, 75] + Line bbox=[82, 64, 130, 75] + GlyphRenderer bbox=[89, 77, 131, 76] + Line bbox=[89, 77, 131, 76] + GlyphRenderer bbox=[45, 145, 157, 27] + Line bbox=[45, 145, 157, 27] + GlyphRenderer bbox=[53, 158, 157, 27] + Line bbox=[53, 158, 157, 27] + GlyphRenderer bbox=[61, 172, 157, 27] + Line bbox=[61, 172, 157, 27] + GlyphRenderer bbox=[68, 185, 158, 27] + Line bbox=[68, 185, 158, 27] + GlyphRenderer bbox=[76, 145, 184, 81] + Line bbox=[76, 145, 184, 81] + GlyphRenderer bbox=[84, 158, 183, 81] + Line bbox=[84, 158, 183, 81] + GlyphRenderer bbox=[92, 172, 183, 81] + Line bbox=[92, 172, 183, 81] + GlyphRenderer bbox=[100, 185, 183, 82] + Line bbox=[100, 185, 183, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[66, 38, 131, 76] - Line bbox=[66, 38, 131, 76] - GlyphRenderer bbox=[74, 52, 131, 75] - Line bbox=[74, 52, 131, 75] - GlyphRenderer bbox=[82, 65, 130, 75] - Line bbox=[82, 65, 130, 75] - GlyphRenderer bbox=[89, 79, 131, 75] - Line bbox=[89, 79, 131, 75] - GlyphRenderer bbox=[45, 146, 157, 27] - Line bbox=[45, 146, 157, 27] - GlyphRenderer bbox=[53, 159, 157, 27] - Line bbox=[53, 159, 157, 27] - GlyphRenderer bbox=[61, 173, 157, 26] - Line bbox=[61, 173, 157, 26] - GlyphRenderer bbox=[68, 186, 158, 27] - Line bbox=[68, 186, 158, 27] - GlyphRenderer bbox=[76, 146, 184, 80] - Line bbox=[76, 146, 184, 80] - GlyphRenderer bbox=[84, 159, 183, 81] - Line bbox=[84, 159, 183, 81] - GlyphRenderer bbox=[92, 173, 183, 80] - Line bbox=[92, 173, 183, 80] - GlyphRenderer bbox=[100, 186, 183, 81] - Line bbox=[100, 186, 183, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[66, 37, 131, 75] + Line bbox=[66, 37, 131, 75] + GlyphRenderer bbox=[74, 50, 131, 76] + Line bbox=[74, 50, 131, 76] + GlyphRenderer bbox=[82, 64, 130, 75] + Line bbox=[82, 64, 130, 75] + GlyphRenderer bbox=[89, 77, 131, 76] + Line bbox=[89, 77, 131, 76] + GlyphRenderer bbox=[45, 145, 157, 27] + Line bbox=[45, 145, 157, 27] + GlyphRenderer bbox=[53, 158, 157, 27] + Line bbox=[53, 158, 157, 27] + GlyphRenderer bbox=[61, 172, 157, 27] + Line bbox=[61, 172, 157, 27] + GlyphRenderer bbox=[68, 185, 158, 27] + Line bbox=[68, 185, 158, 27] + GlyphRenderer bbox=[76, 145, 184, 81] + Line bbox=[76, 145, 184, 81] + GlyphRenderer bbox=[84, 158, 183, 81] + Line bbox=[84, 158, 183, 81] + GlyphRenderer bbox=[92, 172, 183, 81] + Line bbox=[92, 172, 183, 81] + GlyphRenderer bbox=[100, 185, 183, 82] + Line bbox=[100, 185, 183, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.png index fb1848eb748..315d24b5eae 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_NaN_in_coords.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.blf index baff9a797a5..022b27cec86 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 57] - Line bbox=[38, 38, 245, 57] - GlyphRenderer bbox=[38, 124, 245, 57] - Line bbox=[38, 124, 245, 57] - GlyphRenderer bbox=[38, 210, 245, 57] - Line bbox=[38, 210, 245, 57] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 57] + Line bbox=[38, 37, 245, 57] + GlyphRenderer bbox=[38, 123, 245, 57] + Line bbox=[38, 123, 245, 57] + GlyphRenderer bbox=[38, 209, 245, 57] + Line bbox=[38, 209, 245, 57] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 57] - Line bbox=[38, 38, 245, 57] - GlyphRenderer bbox=[38, 124, 245, 57] - Line bbox=[38, 124, 245, 57] - GlyphRenderer bbox=[38, 210, 245, 57] - Line bbox=[38, 210, 245, 57] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 57] + Line bbox=[38, 37, 245, 57] + GlyphRenderer bbox=[38, 123, 245, 57] + Line bbox=[38, 123, 245, 57] + GlyphRenderer bbox=[38, 209, 245, 57] + Line bbox=[38, 209, 245, 57] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[26, 27, 269, 251] - GlyphRenderer bbox=[38, 38, 245, 57] - Line bbox=[38, 38, 245, 57] - GlyphRenderer bbox=[38, 124, 245, 57] - Line bbox=[38, 124, 245, 57] - GlyphRenderer bbox=[38, 210, 245, 57] - Line bbox=[38, 210, 245, 57] + CartesianFrame bbox=[26, 25, 269, 253] + GlyphRenderer bbox=[38, 37, 245, 57] + Line bbox=[38, 37, 245, 57] + GlyphRenderer bbox=[38, 123, 245, 57] + Line bbox=[38, 123, 245, 57] + GlyphRenderer bbox=[38, 209, 245, 57] + Line bbox=[38, 209, 245, 57] LinearAxis bbox=[26, 278, 269, 22] - LinearAxis bbox=[0, 27, 26, 251] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 253] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.png index e300317b588..6191c871516 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_closed_line_loops.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.blf index 16321c76c74..bbc7b25eec2 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 149, 76] - Line bbox=[45, 38, 149, 76] - GlyphRenderer bbox=[90, 114, 148, 77] - Line bbox=[90, 114, 148, 77] - GlyphRenderer bbox=[134, 191, 149, 76] - Line bbox=[134, 191, 149, 76] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 36, 149, 77] + Line bbox=[45, 36, 149, 77] + GlyphRenderer bbox=[90, 113, 148, 77] + Line bbox=[90, 113, 148, 77] + GlyphRenderer bbox=[134, 190, 149, 77] + Line bbox=[134, 190, 149, 77] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 149, 76] - Line bbox=[45, 38, 149, 76] - GlyphRenderer bbox=[90, 114, 148, 77] - Line bbox=[90, 114, 148, 77] - GlyphRenderer bbox=[134, 191, 149, 76] - Line bbox=[134, 191, 149, 76] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 36, 149, 77] + Line bbox=[45, 36, 149, 77] + GlyphRenderer bbox=[90, 113, 148, 77] + Line bbox=[90, 113, 148, 77] + GlyphRenderer bbox=[134, 190, 149, 77] + Line bbox=[134, 190, 149, 77] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 149, 76] - Line bbox=[45, 38, 149, 76] - GlyphRenderer bbox=[90, 114, 148, 77] - Line bbox=[90, 114, 148, 77] - GlyphRenderer bbox=[134, 191, 149, 76] - Line bbox=[134, 191, 149, 76] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 36, 149, 77] + Line bbox=[45, 36, 149, 77] + GlyphRenderer bbox=[90, 113, 148, 77] + Line bbox=[90, 113, 148, 77] + GlyphRenderer bbox=[134, 190, 149, 77] + Line bbox=[134, 190, 149, 77] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.png index 76289c668d6..99b86e6d47f 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_crossing_line.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.blf index edb1794b977..b0e516037aa 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.png index cf75213a7ed..70edb7a12fe 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_named_patterns.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.blf index edb1794b977..b0e516037aa 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.png index 10a07670ded..301b4759245 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_numerical_patterns.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.blf index 67ed32aa076..0568e194037 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 238, 43] - Line bbox=[45, 38, 238, 43] - GlyphRenderer bbox=[45, 55, 238, 43] - Line bbox=[45, 55, 238, 43] - GlyphRenderer bbox=[45, 72, 238, 42] - Line bbox=[45, 72, 238, 42] - GlyphRenderer bbox=[45, 89, 238, 42] - Line bbox=[45, 89, 238, 42] - GlyphRenderer bbox=[45, 106, 238, 42] - Line bbox=[45, 106, 238, 42] - GlyphRenderer bbox=[45, 123, 238, 42] - Line bbox=[45, 123, 238, 42] - GlyphRenderer bbox=[45, 140, 238, 42] - Line bbox=[45, 140, 238, 42] - GlyphRenderer bbox=[45, 157, 238, 42] - Line bbox=[45, 157, 238, 42] - GlyphRenderer bbox=[45, 174, 238, 42] - Line bbox=[45, 174, 238, 42] - GlyphRenderer bbox=[45, 191, 238, 42] - Line bbox=[45, 191, 238, 42] - GlyphRenderer bbox=[45, 207, 238, 43] - Line bbox=[45, 207, 238, 43] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 238, 42] + Line bbox=[45, 37, 238, 42] + GlyphRenderer bbox=[45, 54, 238, 42] + Line bbox=[45, 54, 238, 42] + GlyphRenderer bbox=[45, 71, 238, 42] + Line bbox=[45, 71, 238, 42] + GlyphRenderer bbox=[45, 88, 238, 42] + Line bbox=[45, 88, 238, 42] + GlyphRenderer bbox=[45, 105, 238, 42] + Line bbox=[45, 105, 238, 42] + GlyphRenderer bbox=[45, 122, 238, 42] + Line bbox=[45, 122, 238, 42] + GlyphRenderer bbox=[45, 139, 238, 42] + Line bbox=[45, 139, 238, 42] + GlyphRenderer bbox=[45, 156, 238, 42] + Line bbox=[45, 156, 238, 42] + GlyphRenderer bbox=[45, 173, 238, 42] + Line bbox=[45, 173, 238, 42] + GlyphRenderer bbox=[45, 190, 238, 42] + Line bbox=[45, 190, 238, 42] + GlyphRenderer bbox=[45, 207, 238, 42] + Line bbox=[45, 207, 238, 42] GlyphRenderer bbox=[45, 224, 238, 43] Line bbox=[45, 224, 238, 43] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 238, 43] - Line bbox=[45, 38, 238, 43] - GlyphRenderer bbox=[45, 55, 238, 43] - Line bbox=[45, 55, 238, 43] - GlyphRenderer bbox=[45, 72, 238, 42] - Line bbox=[45, 72, 238, 42] - GlyphRenderer bbox=[45, 89, 238, 42] - Line bbox=[45, 89, 238, 42] - GlyphRenderer bbox=[45, 106, 238, 42] - Line bbox=[45, 106, 238, 42] - GlyphRenderer bbox=[45, 123, 238, 42] - Line bbox=[45, 123, 238, 42] - GlyphRenderer bbox=[45, 140, 238, 42] - Line bbox=[45, 140, 238, 42] - GlyphRenderer bbox=[45, 157, 238, 42] - Line bbox=[45, 157, 238, 42] - GlyphRenderer bbox=[45, 174, 238, 42] - Line bbox=[45, 174, 238, 42] - GlyphRenderer bbox=[45, 191, 238, 42] - Line bbox=[45, 191, 238, 42] - GlyphRenderer bbox=[45, 207, 238, 43] - Line bbox=[45, 207, 238, 43] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 238, 42] + Line bbox=[45, 37, 238, 42] + GlyphRenderer bbox=[45, 54, 238, 42] + Line bbox=[45, 54, 238, 42] + GlyphRenderer bbox=[45, 71, 238, 42] + Line bbox=[45, 71, 238, 42] + GlyphRenderer bbox=[45, 88, 238, 42] + Line bbox=[45, 88, 238, 42] + GlyphRenderer bbox=[45, 105, 238, 42] + Line bbox=[45, 105, 238, 42] + GlyphRenderer bbox=[45, 122, 238, 42] + Line bbox=[45, 122, 238, 42] + GlyphRenderer bbox=[45, 139, 238, 42] + Line bbox=[45, 139, 238, 42] + GlyphRenderer bbox=[45, 156, 238, 42] + Line bbox=[45, 156, 238, 42] + GlyphRenderer bbox=[45, 173, 238, 42] + Line bbox=[45, 173, 238, 42] + GlyphRenderer bbox=[45, 190, 238, 42] + Line bbox=[45, 190, 238, 42] + GlyphRenderer bbox=[45, 207, 238, 42] + Line bbox=[45, 207, 238, 42] GlyphRenderer bbox=[45, 224, 238, 43] Line bbox=[45, 224, 238, 43] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 238, 43] - Line bbox=[45, 38, 238, 43] - GlyphRenderer bbox=[45, 55, 238, 43] - Line bbox=[45, 55, 238, 43] - GlyphRenderer bbox=[45, 72, 238, 42] - Line bbox=[45, 72, 238, 42] - GlyphRenderer bbox=[45, 89, 238, 42] - Line bbox=[45, 89, 238, 42] - GlyphRenderer bbox=[45, 106, 238, 42] - Line bbox=[45, 106, 238, 42] - GlyphRenderer bbox=[45, 123, 238, 42] - Line bbox=[45, 123, 238, 42] - GlyphRenderer bbox=[45, 140, 238, 42] - Line bbox=[45, 140, 238, 42] - GlyphRenderer bbox=[45, 157, 238, 42] - Line bbox=[45, 157, 238, 42] - GlyphRenderer bbox=[45, 174, 238, 42] - Line bbox=[45, 174, 238, 42] - GlyphRenderer bbox=[45, 191, 238, 42] - Line bbox=[45, 191, 238, 42] - GlyphRenderer bbox=[45, 207, 238, 43] - Line bbox=[45, 207, 238, 43] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 238, 42] + Line bbox=[45, 37, 238, 42] + GlyphRenderer bbox=[45, 54, 238, 42] + Line bbox=[45, 54, 238, 42] + GlyphRenderer bbox=[45, 71, 238, 42] + Line bbox=[45, 71, 238, 42] + GlyphRenderer bbox=[45, 88, 238, 42] + Line bbox=[45, 88, 238, 42] + GlyphRenderer bbox=[45, 105, 238, 42] + Line bbox=[45, 105, 238, 42] + GlyphRenderer bbox=[45, 122, 238, 42] + Line bbox=[45, 122, 238, 42] + GlyphRenderer bbox=[45, 139, 238, 42] + Line bbox=[45, 139, 238, 42] + GlyphRenderer bbox=[45, 156, 238, 42] + Line bbox=[45, 156, 238, 42] + GlyphRenderer bbox=[45, 173, 238, 42] + Line bbox=[45, 173, 238, 42] + GlyphRenderer bbox=[45, 190, 238, 42] + Line bbox=[45, 190, 238, 42] + GlyphRenderer bbox=[45, 207, 238, 42] + Line bbox=[45, 207, 238, 42] GlyphRenderer bbox=[45, 224, 238, 43] Line bbox=[45, 224, 238, 43] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.png index 66965ae9fcf..23a81fce8ae 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_offsets.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.blf index edb1794b977..b0e516037aa 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.png index f6ca9c216d3..e70436953b4 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_round_caps.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.blf index edb1794b977..b0e516037aa 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 169, 81] - Line bbox=[45, 38, 169, 81] - GlyphRenderer bbox=[51, 52, 169, 80] - Line bbox=[51, 52, 169, 80] - GlyphRenderer bbox=[58, 65, 168, 81] - Line bbox=[58, 65, 168, 81] - GlyphRenderer bbox=[64, 79, 169, 80] - Line bbox=[64, 79, 169, 80] - GlyphRenderer bbox=[70, 92, 169, 81] - Line bbox=[70, 92, 169, 81] - GlyphRenderer bbox=[77, 106, 168, 80] - Line bbox=[77, 106, 168, 80] - GlyphRenderer bbox=[83, 119, 168, 80] - Line bbox=[83, 119, 168, 80] - GlyphRenderer bbox=[89, 132, 169, 81] - Line bbox=[89, 132, 169, 81] - GlyphRenderer bbox=[95, 146, 169, 80] - Line bbox=[95, 146, 169, 80] - GlyphRenderer bbox=[102, 159, 168, 81] - Line bbox=[102, 159, 168, 81] - GlyphRenderer bbox=[108, 173, 169, 80] - Line bbox=[108, 173, 169, 80] - GlyphRenderer bbox=[114, 186, 169, 81] - Line bbox=[114, 186, 169, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 169, 81] + Line bbox=[45, 37, 169, 81] + GlyphRenderer bbox=[51, 50, 169, 81] + Line bbox=[51, 50, 169, 81] + GlyphRenderer bbox=[58, 64, 168, 81] + Line bbox=[58, 64, 168, 81] + GlyphRenderer bbox=[64, 77, 169, 81] + Line bbox=[64, 77, 169, 81] + GlyphRenderer bbox=[70, 91, 169, 81] + Line bbox=[70, 91, 169, 81] + GlyphRenderer bbox=[77, 104, 168, 81] + Line bbox=[77, 104, 168, 81] + GlyphRenderer bbox=[83, 118, 168, 81] + Line bbox=[83, 118, 168, 81] + GlyphRenderer bbox=[89, 131, 169, 81] + Line bbox=[89, 131, 169, 81] + GlyphRenderer bbox=[95, 145, 169, 81] + Line bbox=[95, 145, 169, 81] + GlyphRenderer bbox=[102, 158, 168, 81] + Line bbox=[102, 158, 168, 81] + GlyphRenderer bbox=[108, 172, 169, 81] + Line bbox=[108, 172, 169, 81] + GlyphRenderer bbox=[114, 185, 169, 82] + Line bbox=[114, 185, 169, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.png index ea39a481710..e1f49a5fd40 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_dashed_lines_with_square_caps.png differ diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.blf b/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.blf index 498761dea99..64edd328747 100644 --- a/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.blf +++ b/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.blf @@ -1,91 +1,91 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 162, 81] - Line bbox=[45, 38, 162, 81] - GlyphRenderer bbox=[52, 52, 162, 80] - Line bbox=[52, 52, 162, 80] - GlyphRenderer bbox=[59, 65, 162, 81] - Line bbox=[59, 65, 162, 81] - GlyphRenderer bbox=[66, 79, 162, 80] - Line bbox=[66, 79, 162, 80] - GlyphRenderer bbox=[73, 92, 162, 81] - Line bbox=[73, 92, 162, 81] - GlyphRenderer bbox=[80, 106, 161, 80] - Line bbox=[80, 106, 161, 80] - GlyphRenderer bbox=[87, 119, 161, 80] - Line bbox=[87, 119, 161, 80] - GlyphRenderer bbox=[93, 132, 162, 81] - Line bbox=[93, 132, 162, 81] - GlyphRenderer bbox=[100, 146, 162, 80] - Line bbox=[100, 146, 162, 80] - GlyphRenderer bbox=[107, 159, 162, 81] - Line bbox=[107, 159, 162, 81] - GlyphRenderer bbox=[114, 173, 162, 80] - Line bbox=[114, 173, 162, 80] - GlyphRenderer bbox=[121, 186, 162, 81] - Line bbox=[121, 186, 162, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 162, 81] + Line bbox=[45, 37, 162, 81] + GlyphRenderer bbox=[52, 50, 162, 81] + Line bbox=[52, 50, 162, 81] + GlyphRenderer bbox=[59, 64, 162, 81] + Line bbox=[59, 64, 162, 81] + GlyphRenderer bbox=[66, 77, 162, 81] + Line bbox=[66, 77, 162, 81] + GlyphRenderer bbox=[73, 91, 162, 81] + Line bbox=[73, 91, 162, 81] + GlyphRenderer bbox=[80, 104, 161, 81] + Line bbox=[80, 104, 161, 81] + GlyphRenderer bbox=[87, 118, 161, 81] + Line bbox=[87, 118, 161, 81] + GlyphRenderer bbox=[93, 131, 162, 81] + Line bbox=[93, 131, 162, 81] + GlyphRenderer bbox=[100, 145, 162, 81] + Line bbox=[100, 145, 162, 81] + GlyphRenderer bbox=[107, 158, 162, 81] + Line bbox=[107, 158, 162, 81] + GlyphRenderer bbox=[114, 172, 162, 81] + Line bbox=[114, 172, 162, 81] + GlyphRenderer bbox=[121, 185, 162, 82] + Line bbox=[121, 185, 162, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 162, 81] - Line bbox=[45, 38, 162, 81] - GlyphRenderer bbox=[52, 52, 162, 80] - Line bbox=[52, 52, 162, 80] - GlyphRenderer bbox=[59, 65, 162, 81] - Line bbox=[59, 65, 162, 81] - GlyphRenderer bbox=[66, 79, 162, 80] - Line bbox=[66, 79, 162, 80] - GlyphRenderer bbox=[73, 92, 162, 81] - Line bbox=[73, 92, 162, 81] - GlyphRenderer bbox=[80, 106, 161, 80] - Line bbox=[80, 106, 161, 80] - GlyphRenderer bbox=[87, 119, 161, 80] - Line bbox=[87, 119, 161, 80] - GlyphRenderer bbox=[93, 132, 162, 81] - Line bbox=[93, 132, 162, 81] - GlyphRenderer bbox=[100, 146, 162, 80] - Line bbox=[100, 146, 162, 80] - GlyphRenderer bbox=[107, 159, 162, 81] - Line bbox=[107, 159, 162, 81] - GlyphRenderer bbox=[114, 173, 162, 80] - Line bbox=[114, 173, 162, 80] - GlyphRenderer bbox=[121, 186, 162, 81] - Line bbox=[121, 186, 162, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 162, 81] + Line bbox=[45, 37, 162, 81] + GlyphRenderer bbox=[52, 50, 162, 81] + Line bbox=[52, 50, 162, 81] + GlyphRenderer bbox=[59, 64, 162, 81] + Line bbox=[59, 64, 162, 81] + GlyphRenderer bbox=[66, 77, 162, 81] + Line bbox=[66, 77, 162, 81] + GlyphRenderer bbox=[73, 91, 162, 81] + Line bbox=[73, 91, 162, 81] + GlyphRenderer bbox=[80, 104, 161, 81] + Line bbox=[80, 104, 161, 81] + GlyphRenderer bbox=[87, 118, 161, 81] + Line bbox=[87, 118, 161, 81] + GlyphRenderer bbox=[93, 131, 162, 81] + Line bbox=[93, 131, 162, 81] + GlyphRenderer bbox=[100, 145, 162, 81] + Line bbox=[100, 145, 162, 81] + GlyphRenderer bbox=[107, 158, 162, 81] + Line bbox=[107, 158, 162, 81] + GlyphRenderer bbox=[114, 172, 162, 81] + Line bbox=[114, 172, 162, 81] + GlyphRenderer bbox=[121, 185, 162, 82] + Line bbox=[121, 185, 162, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 262, 251] - GlyphRenderer bbox=[45, 38, 162, 81] - Line bbox=[45, 38, 162, 81] - GlyphRenderer bbox=[52, 52, 162, 80] - Line bbox=[52, 52, 162, 80] - GlyphRenderer bbox=[59, 65, 162, 81] - Line bbox=[59, 65, 162, 81] - GlyphRenderer bbox=[66, 79, 162, 80] - Line bbox=[66, 79, 162, 80] - GlyphRenderer bbox=[73, 92, 162, 81] - Line bbox=[73, 92, 162, 81] - GlyphRenderer bbox=[80, 106, 161, 80] - Line bbox=[80, 106, 161, 80] - GlyphRenderer bbox=[87, 119, 161, 80] - Line bbox=[87, 119, 161, 80] - GlyphRenderer bbox=[93, 132, 162, 81] - Line bbox=[93, 132, 162, 81] - GlyphRenderer bbox=[100, 146, 162, 80] - Line bbox=[100, 146, 162, 80] - GlyphRenderer bbox=[107, 159, 162, 81] - Line bbox=[107, 159, 162, 81] - GlyphRenderer bbox=[114, 173, 162, 80] - Line bbox=[114, 173, 162, 80] - GlyphRenderer bbox=[121, 186, 162, 81] - Line bbox=[121, 186, 162, 81] + CartesianFrame bbox=[33, 25, 262, 253] + GlyphRenderer bbox=[45, 37, 162, 81] + Line bbox=[45, 37, 162, 81] + GlyphRenderer bbox=[52, 50, 162, 81] + Line bbox=[52, 50, 162, 81] + GlyphRenderer bbox=[59, 64, 162, 81] + Line bbox=[59, 64, 162, 81] + GlyphRenderer bbox=[66, 77, 162, 81] + Line bbox=[66, 77, 162, 81] + GlyphRenderer bbox=[73, 91, 162, 81] + Line bbox=[73, 91, 162, 81] + GlyphRenderer bbox=[80, 104, 161, 81] + Line bbox=[80, 104, 161, 81] + GlyphRenderer bbox=[87, 118, 161, 81] + Line bbox=[87, 118, 161, 81] + GlyphRenderer bbox=[93, 131, 162, 81] + Line bbox=[93, 131, 162, 81] + GlyphRenderer bbox=[100, 145, 162, 81] + Line bbox=[100, 145, 162, 81] + GlyphRenderer bbox=[107, 158, 162, 81] + Line bbox=[107, 158, 162, 81] + GlyphRenderer bbox=[114, 172, 162, 81] + Line bbox=[114, 172, 162, 81] + GlyphRenderer bbox=[121, 185, 162, 82] + Line bbox=[121, 185, 162, 82] LinearAxis bbox=[33, 278, 262, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 262, 27] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 262, 25] diff --git a/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.png b/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.png index 7181eb069bf..38a253a7d9d 100644 Binary files a/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.png and b/bokehjs/test/baselines/linux/Line_glyph__should_support_solid_lines_with_caps_and_joins.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.blf b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.blf index 5ec1e7683c4..6491670fd88 100644 --- a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.blf +++ b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 1200, 400] Plot bbox=[0, 0, 600, 400] Canvas bbox=[0, 0, 600, 400] - CartesianFrame bbox=[80, 97, 440, 233] - LogAxis bbox=[80, 27, 440, 70] + CartesianFrame bbox=[80, 95, 440, 235] + LogAxis bbox=[80, 25, 440, 70] LogAxis bbox=[80, 330, 440, 70] - LogAxis bbox=[0, 97, 80, 233] - LogAxis bbox=[520, 97, 80, 233] - Title bbox=[80, 0, 440, 27] + LogAxis bbox=[0, 95, 80, 235] + LogAxis bbox=[520, 95, 80, 235] + Title bbox=[80, 0, 440, 25] Plot bbox=[600, 0, 600, 400] Canvas bbox=[0, 0, 600, 400] - CartesianFrame bbox=[80, 97, 440, 233] - LogAxis bbox=[80, 27, 440, 70] + CartesianFrame bbox=[80, 95, 440, 235] + LogAxis bbox=[80, 25, 440, 70] LogAxis bbox=[80, 330, 440, 70] - LogAxis bbox=[0, 97, 80, 233] - LogAxis bbox=[520, 97, 80, 233] - Title bbox=[80, 0, 440, 27] + LogAxis bbox=[0, 95, 80, 235] + LogAxis bbox=[520, 95, 80, 235] + Title bbox=[80, 0, 440, 25] diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.png b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.png index b6620bdc19c..409f91fb643 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.png and b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_axis_labels.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.blf b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.blf index fd93fbe04a5..5a5f52598f4 100644 --- a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.blf +++ b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 1200, 400] Plot bbox=[0, 0, 600, 400] Canvas bbox=[0, 0, 600, 400] - CartesianFrame bbox=[68, 72, 464, 283] - LogAxis bbox=[68, 27, 464, 45] + CartesianFrame bbox=[68, 70, 464, 285] + LogAxis bbox=[68, 25, 464, 45] LogAxis bbox=[68, 355, 464, 45] - LogAxis bbox=[0, 72, 68, 283] - LogAxis bbox=[532, 72, 68, 283] - Title bbox=[68, 0, 464, 27] + LogAxis bbox=[0, 70, 68, 285] + LogAxis bbox=[532, 70, 68, 285] + Title bbox=[68, 0, 464, 25] Plot bbox=[600, 0, 600, 400] Canvas bbox=[0, 0, 600, 400] - CartesianFrame bbox=[68, 72, 464, 283] - LogAxis bbox=[68, 27, 464, 45] + CartesianFrame bbox=[68, 70, 464, 285] + LogAxis bbox=[68, 25, 464, 45] LogAxis bbox=[68, 355, 464, 45] - LogAxis bbox=[0, 72, 68, 283] - LogAxis bbox=[532, 72, 68, 283] - Title bbox=[68, 0, 464, 27] + LogAxis bbox=[0, 70, 68, 285] + LogAxis bbox=[532, 70, 68, 285] + Title bbox=[68, 0, 464, 25] diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.png b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.png index 9d992a2fbed..fa36518180a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.png and b/bokehjs/test/baselines/linux/LinearAxis__in_both_orientations__should_support_LaTeX_notation_on_tick_labels_when_using_overrides.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png index bbc935ff603..daad9b12aa8 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png index 023dadadfbd..87aad66ae55 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png index 341ab6acae2..95546ebbde3 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png index c5ffb91c052..a495fe33195 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png index 21f8ab836ea..d7513319d33 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png index 03218416402..c474b76c915 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png index 042fd4c547f..dfff54a7f92 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png index c75acf55a9e..27e095b9b1d 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png index 042fd4c547f..dfff54a7f92 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png index c75acf55a9e..27e095b9b1d 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png index 042fd4c547f..dfff54a7f92 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index 344af669523..eb6764d036b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index fc7a59b78a0..8bb66d926c4 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index 5cede4996ea..9e7b24c78d6 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index 2e2063d08e5..fcb1955f6b3 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index 5ef45091aa3..38555b99af3 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index 3dbc46e221f..560f2a366ac 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png index 7c5d3a94fb5..5b3a1e2150e 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png index cf1f550cde9..c493b3fce9a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png index 808e528814c..db360d82040 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png index 09d3bc89ef6..2bbdce634d0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png index b593317fa18..c3cba412591 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index d1db4a46a1d..50d9fd736c2 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index d1db4a46a1d..50d9fd736c2 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index d1db4a46a1d..50d9fd736c2 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png index fee4f994fc2..6693bb9603b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index 7b72279b129..b30cf06ddd1 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index 7f55d26bd30..6766a0fa1ea 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index 7f55d26bd30..6766a0fa1ea 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index ada3e8af388..a4afa34c16a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png index 9354a6bd9ab..6ec346b6feb 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png index bada72f9061..644fee8073d 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png index 430f3c9ac67..e357d436f6a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png index 0efd09219ed..41b00dc628b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png index 03abffa1dfa..b40ae891e79 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png index 0a1b3318ee4..2d3546d3c47 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png index b37d8eed484..34d6d7da97f 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png index 6fc84722abb..c56eeb92416 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png index 2bd076e06cf..d0fad8260e9 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png index 6fc84722abb..c56eeb92416 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png index 2bd076e06cf..d0fad8260e9 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index c3bb5d58923..582806f9f67 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index 95a47b16a24..95f7265b5e2 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index 95b3ff17e79..78faa275320 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index 8316ef1dde3..0b727e1b96a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index e5251bfaf74..b8eb11e84b8 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index 2a80b0c5245..6ff9a371161 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png index c1bd0a1d9f1..140ce7ce047 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png index fe9affa7129..e17d32c55f9 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png index 27ae9c9ab71..e1013f97dde 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png index 9dbeee2db8e..eb8763428a5 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png index 0c2727a6082..fcc320cf394 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index 28e1a439cd7..bd1b0ff92bf 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index 28e1a439cd7..bd1b0ff92bf 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index 28e1a439cd7..bd1b0ff92bf 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png index 720edc6073b..3e8ca618a95 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index 587380b7677..18c7dbd3422 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index 4ece827065c..ce705c07221 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index 4ece827065c..ce705c07221 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index 6f22e6bfdd7..3da096f626f 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LinearAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png index 4268a3a5b29..3e552cc4515 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png index 73fa2ad0306..42b1654ad47 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png index bbd29718fa7..2c1d62cb136 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png index ea0985b5e7e..b32d5df5079 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png index 0c45c225be6..4ea960a8c86 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png index 06b6ba8e480..4c86b7fcee8 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png index 39bb12f27a2..17c6fc03934 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png index 4268a3a5b29..3e552cc4515 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png index 4268a3a5b29..3e552cc4515 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png index f53d6789fdc..0895722b1d0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png index f53d6789fdc..0895722b1d0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index 4078f07a7d8..6c161bc21a5 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index c509e3ba640..3feb4d2abd9 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index e2b375cd7a6..34926593bef 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index 9b363b40d83..9b7ffeedede 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index de2b417aa9d..e65f341e0ef 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index 1c7acada6da..f8112036c53 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png index ec7b97c7b23..f7cf8c751a0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png index 6afd0143f50..0be9f069821 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png index e263041f08c..03d777aa672 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png index 2a8dd0d7d05..33696170a5d 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png index e6c34988822..4d2d42c9387 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index a04961e7498..36a109f517b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index a04961e7498..36a109f517b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index a04961e7498..36a109f517b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png index 215bb5d77aa..160632fb05b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index 74d2fc70f51..b2ee37d42cd 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index a8a97ca57fc..05fba330dc0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index a8a97ca57fc..05fba330dc0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index 138949ff269..db20ffbb011 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png index 77184d140ed..a5edbc0326a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png index d01d9bbd695..365aa8f244f 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png index f60152313f6..3d93cfca0be 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png index 7dcca1335b9..8a3b9646a0f 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png index b1ece1c58aa..6ac53e5b704 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png index 075197f279e..5690609dbe4 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png index 7515123de27..b54eefe3fdb 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png index 77184d140ed..a5edbc0326a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png index 77184d140ed..a5edbc0326a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png index 5206d01cefa..d890af3285a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png index 5206d01cefa..d890af3285a 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index 691d865938d..0b49d9b30a0 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index 5b76c3f8472..d14adf557c7 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index 779e671c476..a65487faade 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index 1b5351c36d9..76c87d253ba 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index dc75ecb462b..c2376d04908 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index ee5b4008aba..ae144aaf8bf 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png index 22a1973785a..0391b13732b 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png index 447d030dbea..97632ab1b6c 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png index 0bdc6eaa85e..91394abcdea 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png index 0c05ae43b95..fe7dea66916 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png index c9e882b82af..4a31e41a695 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index ad1acd64551..e3a05c12def 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index ad1acd64551..e3a05c12def 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index ad1acd64551..e3a05c12def 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png index 8b397d8c42e..b89e1c6e9ac 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index d95dbc3d1dc..48399108cea 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index db71d0391ab..2e39e8eebf5 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index db71d0391ab..2e39e8eebf5 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index 9a61f981514..957eca0b316 100644 Binary files a/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LinearAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png index 7962329b15a..0791f162ea5 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png index 00180878621..8fd77cb2ea7 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png index 5d9f0a5ba89..8b6e6152412 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png index c9bdad87ff1..e2145314a45 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png index 8a2e324de63..f1fe2765fe2 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png index 3d3de610de6..32647bbd5dc 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png index 57ded49de43..f5d2d386f89 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png index 807f733044b..ff6903d79fb 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png index 57ded49de43..f5d2d386f89 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png index 807f733044b..ff6903d79fb 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png index 57ded49de43..f5d2d386f89 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index 57ded49de43..f5d2d386f89 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index 807f733044b..ff6903d79fb 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index 57ded49de43..f5d2d386f89 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index 807f733044b..ff6903d79fb 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index 2827b2d5dff..8c625860cfc 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index e6f96aef1bb..da4c13e0b23 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png index 9187beb4121..e243d4becd5 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png index dabb4961355..1ab46d71b3d 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png index 8290c8c8b4c..594ac4437c7 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png index 3f1e6a3ede3..231189f1252 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png index bd5e5597055..af5f1884a0f 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index 8df5b638fe2..18ef1373c48 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index 8df5b638fe2..18ef1373c48 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index 8df5b638fe2..18ef1373c48 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png index 95179afbf44..1811f4a5d6e 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index f4e2b1efa0e..ba192bba388 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index 100a34410b7..94b3424fe75 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index 100a34410b7..94b3424fe75 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index b23bd43c339..7dda805a775 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__above_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png index 8880f5e61da..cb03f3bf9c3 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png index a1028e3395d..b65ed32307b 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png index 5199014ee4d..1b0670a0b48 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png index e8a6068907e..718a39cedde 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png index 572a76417d0..fece1a01535 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png index 7c502a800b6..8cee25e371a 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png index adf6818e643..abacdd204f8 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png index f435bb7fe7a..5c2d3d11e26 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png index f14e8533ae3..6e30c16f75d 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png index f435bb7fe7a..5c2d3d11e26 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png index f14e8533ae3..6e30c16f75d 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index f14e8533ae3..6e30c16f75d 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index f435bb7fe7a..5c2d3d11e26 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index f14e8533ae3..6e30c16f75d 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index f435bb7fe7a..5c2d3d11e26 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index fee1f6aa3cd..04047b93e7e 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index 31d06033cd1..cdf7956ddb4 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png index 552e614c502..da90452fa13 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png index 2b2a4029fe8..ea89f92717b 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png index add9c86e497..2f8cdb433a5 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png index 541c7ff926e..39acf76147f 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png index fe704dfaaa8..605e526c74c 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index 763cca960f5..0f65cb56f30 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index 763cca960f5..0f65cb56f30 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index 763cca960f5..0f65cb56f30 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png index a8c0b3866b1..0283d691aa5 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index 9b7aee8c877..766d0ec0567 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index 58e8ebdc35c..eceb4ac35cc 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index 58e8ebdc35c..eceb4ac35cc 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index 36e5383122c..f699a725adf 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LogAxis__in_horizontal_orientation__below_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png index 1032cc43f2d..b5743dfa912 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png index 29adb1254f0..65ac788b20f 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png index d6491f6a069..c16b6943249 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png index 116382f7230..e9b6518cb3d 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png index fa2cf8b64c4..deaa67b4deb 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png index 6b79839cfdf..1ff50a67bb5 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png index b59016ce07e..3056af19e1f 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png index 1032cc43f2d..b5743dfa912 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png index 1032cc43f2d..b5743dfa912 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png index dc0d37d8194..6c4a9a0d4ee 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png index dc0d37d8194..6c4a9a0d4ee 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index 1032cc43f2d..b5743dfa912 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index dc0d37d8194..6c4a9a0d4ee 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index 1032cc43f2d..b5743dfa912 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index dc0d37d8194..6c4a9a0d4ee 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index 01e49ee4a5b..07281933a25 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index 1681cb4e5bf..0183209f7bf 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png index 02394fabe54..f751ca58d30 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png index 44766b9e315..33b4dbcbf61 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png index 352ed301ef3..0998a3d2fab 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png index c406d769780..aac01dfe617 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png index 5b3ff4535cc..84ccde15305 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index 951dc6361c0..abde8bbcf57 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index 951dc6361c0..abde8bbcf57 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index 951dc6361c0..abde8bbcf57 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png index bbe2a98c5d3..81056030d8c 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index 965f519436d..f5e71f99d46 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index 35f16985ecd..99e1b51211b 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index 35f16985ecd..99e1b51211b 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index 04e4907954c..fb19cb19172 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__left_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png index faf8e78070c..841fcfbc2b6 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=0deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png index d089d2e3e0a..6220f037295 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=135deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png index c6c422796f0..a09e4c5314f 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=180deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png index 068c09e9fc3..e4a0c802df8 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=30deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png index f003910f117..5957ea34aee 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=45deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png index 6ace5d51c83..d525ea500a6 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=60deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png index 4a74b1dc067..4e114619a34 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=90deg.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png index faf8e78070c..841fcfbc2b6 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=horizontal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png index faf8e78070c..841fcfbc2b6 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png index 0470e5f558a..c927b740d24 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png index 0470e5f558a..c927b740d24 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_orientation=vertical.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png index faf8e78070c..841fcfbc2b6 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png index 0470e5f558a..c927b740d24 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=AllLables_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png index faf8e78070c..841fcfbc2b6 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png index 0470e5f558a..c927b740d24 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=10)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png index 2b8f4b86fc7..0405a00acf1 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png index e4c2e508038..5a5b9c44e21 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_policy=NoOverlap(min_distance=50)_with_major_label_orientation=parallel.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png index 4f53f3aa36d..b6cb0f2e1ce 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png index 552d3cc3799..56aa773511b 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png index 366ed3598c1..3f1006a4cb2 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_major_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png index ab8fdc489bb..8b54821ec63 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_in=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png index cd0c89b94eb..3cf1d3d09a4 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_minor_tick_out=10.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png index 7a5f7c0d93a..c2b1ea7357a 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=center.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png index 7a5f7c0d93a..c2b1ea7357a 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=left.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png index 7a5f7c0d93a..c2b1ea7357a 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_multiple_line_axis_label_with_axis_label_text_align=right.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png index bb9c7029b8c..33b43f538c3 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png index 39d2e8a901d..81bb0b1a42f 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_orientation=normal.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png index af713e01409..c2397904a41 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png index af713e01409..c2397904a41 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=20_and_axis_label_standoff_mode=tick_labels.png differ diff --git a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png index 5666c585481..79a0316a1dc 100644 Binary files a/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png and b/bokehjs/test/baselines/linux/LogAxis__in_vertical_orientation__right_of_a_plot__should_support_single_line_axis_label_and_axis_label_standoff=70_and_axis_label_standoff_mode=axis.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.png index c419f4874c3..ad0965e5845 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'asterisk'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.png index 9a44cd9968f..549026c2069 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.png index 1b3f4f24b2d..a4080121d16 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_cross'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.png index 401829aa832..54e7d7123d1 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.png index d4220b411a7..b2c6473e1d5 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_x'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.png index 7ae9a7161b2..6c2e0eed24a 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'circle_y'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.png index e82453b4633..d759ae1e6f7 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'cross'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.png index 7a59912d83b..1d580e210f2 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dash'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.png index 708b6b252b6..e577361773b 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.png index ec9ed3748ec..c0457282d64 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_cross'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.png index 6b349ed78f9..78ccb546013 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'diamond_dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.png index f786b4af82f..26072efcc5c 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.png index 7666853cb67..f3d88fc9475 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.png index f8f8830508c..fd1642f2b7f 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'hex_dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.png index 18edd4eb462..a07f30b3009 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'inverted_triangle'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.png index 00ed882399b..9026c93d0fa 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'plus'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.png index d82caf515f9..e17104e7a77 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.png index 584a7a30610..fd871d58ac3 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_cross'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.png index 2179434dae4..4c793fe0944 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.png index d45bafed446..6233bb1efff 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_pin'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.png index 5a7cf3c62e8..80b2af8fe15 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'square_x'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.png index d6ba28d32f3..f77232fd9e2 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.png index db720ed0627..7716b4a5b13 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'star_dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.png index 16ab3c8d702..e3e3a879525 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.png index c96ec6e59ea..7cb3ab6f8ee 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_dot'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.png index 720fc75c335..7204f4796a6 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'triangle_pin'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.png index 98bac4903ca..6eec1dd9b92 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'x'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.blf index d221e59e278..7e08a20c78b 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.blf @@ -1,19 +1,19 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[5, 27, 140, 118] - GlyphRenderer bbox=[11, 32, 128, 108] - Scatter bbox=[11, 32, 128, 108] - Title bbox=[5, 0, 140, 27] + CartesianFrame bbox=[5, 25, 140, 120] + GlyphRenderer bbox=[11, 30, 128, 110] + Scatter bbox=[11, 30, 128, 110] + Title bbox=[5, 0, 140, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.png index 120c696d1be..9b5653ce90c 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_'y'_marker_type.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.blf index 88885d6039b..dad1bde2525 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.blf @@ -1,187 +1,187 @@ Row bbox=[0, 0, 900, 600] Figure bbox=[0, 0, 300, 600] Canvas bbox=[0, 0, 300, 600] - CartesianFrame bbox=[26, 27, 269, 551] + CartesianFrame bbox=[26, 25, 269, 553] GlyphRenderer bbox=[38, 488, 245, 65] Scatter bbox=[38, 488, 245, 65] GlyphRenderer bbox=[38, 472, 245, 65] Scatter bbox=[38, 472, 245, 65] - GlyphRenderer bbox=[38, 456, 245, 65] - Scatter bbox=[38, 456, 245, 65] - GlyphRenderer bbox=[38, 440, 245, 64] - Scatter bbox=[38, 440, 245, 64] - GlyphRenderer bbox=[38, 424, 245, 64] - Scatter bbox=[38, 424, 245, 64] - GlyphRenderer bbox=[38, 408, 245, 64] - Scatter bbox=[38, 408, 245, 64] + GlyphRenderer bbox=[38, 456, 245, 64] + Scatter bbox=[38, 456, 245, 64] + GlyphRenderer bbox=[38, 439, 245, 65] + Scatter bbox=[38, 439, 245, 65] + GlyphRenderer bbox=[38, 423, 245, 65] + Scatter bbox=[38, 423, 245, 65] + GlyphRenderer bbox=[38, 407, 245, 65] + Scatter bbox=[38, 407, 245, 65] GlyphRenderer bbox=[38, 391, 245, 65] Scatter bbox=[38, 391, 245, 65] - GlyphRenderer bbox=[38, 375, 245, 65] - Scatter bbox=[38, 375, 245, 65] - GlyphRenderer bbox=[38, 359, 245, 65] - Scatter bbox=[38, 359, 245, 65] - GlyphRenderer bbox=[38, 343, 245, 65] - Scatter bbox=[38, 343, 245, 65] - GlyphRenderer bbox=[38, 327, 245, 64] - Scatter bbox=[38, 327, 245, 64] - GlyphRenderer bbox=[38, 311, 245, 64] - Scatter bbox=[38, 311, 245, 64] - GlyphRenderer bbox=[38, 294, 245, 65] - Scatter bbox=[38, 294, 245, 65] - GlyphRenderer bbox=[38, 278, 245, 65] - Scatter bbox=[38, 278, 245, 65] - GlyphRenderer bbox=[38, 262, 245, 65] - Scatter bbox=[38, 262, 245, 65] - GlyphRenderer bbox=[38, 246, 245, 65] - Scatter bbox=[38, 246, 245, 65] - GlyphRenderer bbox=[38, 230, 245, 64] - Scatter bbox=[38, 230, 245, 64] - GlyphRenderer bbox=[38, 214, 245, 64] - Scatter bbox=[38, 214, 245, 64] - GlyphRenderer bbox=[38, 197, 245, 65] - Scatter bbox=[38, 197, 245, 65] - GlyphRenderer bbox=[38, 181, 245, 65] - Scatter bbox=[38, 181, 245, 65] - GlyphRenderer bbox=[38, 165, 245, 65] - Scatter bbox=[38, 165, 245, 65] - GlyphRenderer bbox=[38, 149, 245, 65] - Scatter bbox=[38, 149, 245, 65] - GlyphRenderer bbox=[38, 133, 245, 64] - Scatter bbox=[38, 133, 245, 64] - GlyphRenderer bbox=[38, 117, 245, 64] - Scatter bbox=[38, 117, 245, 64] - GlyphRenderer bbox=[38, 101, 245, 64] - Scatter bbox=[38, 101, 245, 64] - GlyphRenderer bbox=[38, 84, 245, 65] - Scatter bbox=[38, 84, 245, 65] - GlyphRenderer bbox=[38, 68, 245, 65] - Scatter bbox=[38, 68, 245, 65] - GlyphRenderer bbox=[38, 52, 245, 65] - Scatter bbox=[38, 52, 245, 65] + GlyphRenderer bbox=[38, 374, 245, 65] + Scatter bbox=[38, 374, 245, 65] + GlyphRenderer bbox=[38, 358, 245, 65] + Scatter bbox=[38, 358, 245, 65] + GlyphRenderer bbox=[38, 342, 245, 65] + Scatter bbox=[38, 342, 245, 65] + GlyphRenderer bbox=[38, 326, 245, 65] + Scatter bbox=[38, 326, 245, 65] + GlyphRenderer bbox=[38, 310, 245, 64] + Scatter bbox=[38, 310, 245, 64] + GlyphRenderer bbox=[38, 293, 245, 65] + Scatter bbox=[38, 293, 245, 65] + GlyphRenderer bbox=[38, 277, 245, 65] + Scatter bbox=[38, 277, 245, 65] + GlyphRenderer bbox=[38, 261, 245, 65] + Scatter bbox=[38, 261, 245, 65] + GlyphRenderer bbox=[38, 245, 245, 65] + Scatter bbox=[38, 245, 245, 65] + GlyphRenderer bbox=[38, 229, 245, 64] + Scatter bbox=[38, 229, 245, 64] + GlyphRenderer bbox=[38, 212, 245, 65] + Scatter bbox=[38, 212, 245, 65] + GlyphRenderer bbox=[38, 196, 245, 65] + Scatter bbox=[38, 196, 245, 65] + GlyphRenderer bbox=[38, 180, 245, 65] + Scatter bbox=[38, 180, 245, 65] + GlyphRenderer bbox=[38, 164, 245, 65] + Scatter bbox=[38, 164, 245, 65] + GlyphRenderer bbox=[38, 147, 245, 65] + Scatter bbox=[38, 147, 245, 65] + GlyphRenderer bbox=[38, 131, 245, 65] + Scatter bbox=[38, 131, 245, 65] + GlyphRenderer bbox=[38, 115, 245, 65] + Scatter bbox=[38, 115, 245, 65] + GlyphRenderer bbox=[38, 99, 245, 65] + Scatter bbox=[38, 99, 245, 65] + GlyphRenderer bbox=[38, 83, 245, 64] + Scatter bbox=[38, 83, 245, 64] + GlyphRenderer bbox=[38, 66, 245, 65] + Scatter bbox=[38, 66, 245, 65] + GlyphRenderer bbox=[38, 50, 245, 65] + Scatter bbox=[38, 50, 245, 65] LinearAxis bbox=[26, 578, 269, 22] - LinearAxis bbox=[0, 27, 26, 551] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 553] + Title bbox=[26, 0, 269, 25] Figure bbox=[300, 0, 300, 600] Canvas bbox=[0, 0, 300, 600] - CartesianFrame bbox=[26, 27, 269, 551] + CartesianFrame bbox=[26, 25, 269, 553] GlyphRenderer bbox=[38, 488, 245, 65] Scatter bbox=[38, 488, 245, 65] GlyphRenderer bbox=[38, 472, 245, 65] Scatter bbox=[38, 472, 245, 65] - GlyphRenderer bbox=[38, 456, 245, 65] - Scatter bbox=[38, 456, 245, 65] - GlyphRenderer bbox=[38, 440, 245, 64] - Scatter bbox=[38, 440, 245, 64] - GlyphRenderer bbox=[38, 424, 245, 64] - Scatter bbox=[38, 424, 245, 64] - GlyphRenderer bbox=[38, 408, 245, 64] - Scatter bbox=[38, 408, 245, 64] + GlyphRenderer bbox=[38, 456, 245, 64] + Scatter bbox=[38, 456, 245, 64] + GlyphRenderer bbox=[38, 439, 245, 65] + Scatter bbox=[38, 439, 245, 65] + GlyphRenderer bbox=[38, 423, 245, 65] + Scatter bbox=[38, 423, 245, 65] + GlyphRenderer bbox=[38, 407, 245, 65] + Scatter bbox=[38, 407, 245, 65] GlyphRenderer bbox=[38, 391, 245, 65] Scatter bbox=[38, 391, 245, 65] - GlyphRenderer bbox=[38, 375, 245, 65] - Scatter bbox=[38, 375, 245, 65] - GlyphRenderer bbox=[38, 359, 245, 65] - Scatter bbox=[38, 359, 245, 65] - GlyphRenderer bbox=[38, 343, 245, 65] - Scatter bbox=[38, 343, 245, 65] - GlyphRenderer bbox=[38, 327, 245, 64] - Scatter bbox=[38, 327, 245, 64] - GlyphRenderer bbox=[38, 311, 245, 64] - Scatter bbox=[38, 311, 245, 64] - GlyphRenderer bbox=[38, 294, 245, 65] - Scatter bbox=[38, 294, 245, 65] - GlyphRenderer bbox=[38, 278, 245, 65] - Scatter bbox=[38, 278, 245, 65] - GlyphRenderer bbox=[38, 262, 245, 65] - Scatter bbox=[38, 262, 245, 65] - GlyphRenderer bbox=[38, 246, 245, 65] - Scatter bbox=[38, 246, 245, 65] - GlyphRenderer bbox=[38, 230, 245, 64] - Scatter bbox=[38, 230, 245, 64] - GlyphRenderer bbox=[38, 214, 245, 64] - Scatter bbox=[38, 214, 245, 64] - GlyphRenderer bbox=[38, 197, 245, 65] - Scatter bbox=[38, 197, 245, 65] - GlyphRenderer bbox=[38, 181, 245, 65] - Scatter bbox=[38, 181, 245, 65] - GlyphRenderer bbox=[38, 165, 245, 65] - Scatter bbox=[38, 165, 245, 65] - GlyphRenderer bbox=[38, 149, 245, 65] - Scatter bbox=[38, 149, 245, 65] - GlyphRenderer bbox=[38, 133, 245, 64] - Scatter bbox=[38, 133, 245, 64] - GlyphRenderer bbox=[38, 117, 245, 64] - Scatter bbox=[38, 117, 245, 64] - GlyphRenderer bbox=[38, 101, 245, 64] - Scatter bbox=[38, 101, 245, 64] - GlyphRenderer bbox=[38, 84, 245, 65] - Scatter bbox=[38, 84, 245, 65] - GlyphRenderer bbox=[38, 68, 245, 65] - Scatter bbox=[38, 68, 245, 65] - GlyphRenderer bbox=[38, 52, 245, 65] - Scatter bbox=[38, 52, 245, 65] + GlyphRenderer bbox=[38, 374, 245, 65] + Scatter bbox=[38, 374, 245, 65] + GlyphRenderer bbox=[38, 358, 245, 65] + Scatter bbox=[38, 358, 245, 65] + GlyphRenderer bbox=[38, 342, 245, 65] + Scatter bbox=[38, 342, 245, 65] + GlyphRenderer bbox=[38, 326, 245, 65] + Scatter bbox=[38, 326, 245, 65] + GlyphRenderer bbox=[38, 310, 245, 64] + Scatter bbox=[38, 310, 245, 64] + GlyphRenderer bbox=[38, 293, 245, 65] + Scatter bbox=[38, 293, 245, 65] + GlyphRenderer bbox=[38, 277, 245, 65] + Scatter bbox=[38, 277, 245, 65] + GlyphRenderer bbox=[38, 261, 245, 65] + Scatter bbox=[38, 261, 245, 65] + GlyphRenderer bbox=[38, 245, 245, 65] + Scatter bbox=[38, 245, 245, 65] + GlyphRenderer bbox=[38, 229, 245, 64] + Scatter bbox=[38, 229, 245, 64] + GlyphRenderer bbox=[38, 212, 245, 65] + Scatter bbox=[38, 212, 245, 65] + GlyphRenderer bbox=[38, 196, 245, 65] + Scatter bbox=[38, 196, 245, 65] + GlyphRenderer bbox=[38, 180, 245, 65] + Scatter bbox=[38, 180, 245, 65] + GlyphRenderer bbox=[38, 164, 245, 65] + Scatter bbox=[38, 164, 245, 65] + GlyphRenderer bbox=[38, 147, 245, 65] + Scatter bbox=[38, 147, 245, 65] + GlyphRenderer bbox=[38, 131, 245, 65] + Scatter bbox=[38, 131, 245, 65] + GlyphRenderer bbox=[38, 115, 245, 65] + Scatter bbox=[38, 115, 245, 65] + GlyphRenderer bbox=[38, 99, 245, 65] + Scatter bbox=[38, 99, 245, 65] + GlyphRenderer bbox=[38, 83, 245, 64] + Scatter bbox=[38, 83, 245, 64] + GlyphRenderer bbox=[38, 66, 245, 65] + Scatter bbox=[38, 66, 245, 65] + GlyphRenderer bbox=[38, 50, 245, 65] + Scatter bbox=[38, 50, 245, 65] LinearAxis bbox=[26, 578, 269, 22] - LinearAxis bbox=[0, 27, 26, 551] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 553] + Title bbox=[26, 0, 269, 25] Figure bbox=[600, 0, 300, 600] Canvas bbox=[0, 0, 300, 600] - CartesianFrame bbox=[26, 27, 269, 551] + CartesianFrame bbox=[26, 25, 269, 553] GlyphRenderer bbox=[38, 488, 245, 65] Scatter bbox=[38, 488, 245, 65] GlyphRenderer bbox=[38, 472, 245, 65] Scatter bbox=[38, 472, 245, 65] - GlyphRenderer bbox=[38, 456, 245, 65] - Scatter bbox=[38, 456, 245, 65] - GlyphRenderer bbox=[38, 440, 245, 64] - Scatter bbox=[38, 440, 245, 64] - GlyphRenderer bbox=[38, 424, 245, 64] - Scatter bbox=[38, 424, 245, 64] - GlyphRenderer bbox=[38, 408, 245, 64] - Scatter bbox=[38, 408, 245, 64] + GlyphRenderer bbox=[38, 456, 245, 64] + Scatter bbox=[38, 456, 245, 64] + GlyphRenderer bbox=[38, 439, 245, 65] + Scatter bbox=[38, 439, 245, 65] + GlyphRenderer bbox=[38, 423, 245, 65] + Scatter bbox=[38, 423, 245, 65] + GlyphRenderer bbox=[38, 407, 245, 65] + Scatter bbox=[38, 407, 245, 65] GlyphRenderer bbox=[38, 391, 245, 65] Scatter bbox=[38, 391, 245, 65] - GlyphRenderer bbox=[38, 375, 245, 65] - Scatter bbox=[38, 375, 245, 65] - GlyphRenderer bbox=[38, 359, 245, 65] - Scatter bbox=[38, 359, 245, 65] - GlyphRenderer bbox=[38, 343, 245, 65] - Scatter bbox=[38, 343, 245, 65] - GlyphRenderer bbox=[38, 327, 245, 64] - Scatter bbox=[38, 327, 245, 64] - GlyphRenderer bbox=[38, 311, 245, 64] - Scatter bbox=[38, 311, 245, 64] - GlyphRenderer bbox=[38, 294, 245, 65] - Scatter bbox=[38, 294, 245, 65] - GlyphRenderer bbox=[38, 278, 245, 65] - Scatter bbox=[38, 278, 245, 65] - GlyphRenderer bbox=[38, 262, 245, 65] - Scatter bbox=[38, 262, 245, 65] - GlyphRenderer bbox=[38, 246, 245, 65] - Scatter bbox=[38, 246, 245, 65] - GlyphRenderer bbox=[38, 230, 245, 64] - Scatter bbox=[38, 230, 245, 64] - GlyphRenderer bbox=[38, 214, 245, 64] - Scatter bbox=[38, 214, 245, 64] - GlyphRenderer bbox=[38, 197, 245, 65] - Scatter bbox=[38, 197, 245, 65] - GlyphRenderer bbox=[38, 181, 245, 65] - Scatter bbox=[38, 181, 245, 65] - GlyphRenderer bbox=[38, 165, 245, 65] - Scatter bbox=[38, 165, 245, 65] - GlyphRenderer bbox=[38, 149, 245, 65] - Scatter bbox=[38, 149, 245, 65] - GlyphRenderer bbox=[38, 133, 245, 64] - Scatter bbox=[38, 133, 245, 64] - GlyphRenderer bbox=[38, 117, 245, 64] - Scatter bbox=[38, 117, 245, 64] - GlyphRenderer bbox=[38, 101, 245, 64] - Scatter bbox=[38, 101, 245, 64] - GlyphRenderer bbox=[38, 84, 245, 65] - Scatter bbox=[38, 84, 245, 65] - GlyphRenderer bbox=[38, 68, 245, 65] - Scatter bbox=[38, 68, 245, 65] - GlyphRenderer bbox=[38, 52, 245, 65] - Scatter bbox=[38, 52, 245, 65] + GlyphRenderer bbox=[38, 374, 245, 65] + Scatter bbox=[38, 374, 245, 65] + GlyphRenderer bbox=[38, 358, 245, 65] + Scatter bbox=[38, 358, 245, 65] + GlyphRenderer bbox=[38, 342, 245, 65] + Scatter bbox=[38, 342, 245, 65] + GlyphRenderer bbox=[38, 326, 245, 65] + Scatter bbox=[38, 326, 245, 65] + GlyphRenderer bbox=[38, 310, 245, 64] + Scatter bbox=[38, 310, 245, 64] + GlyphRenderer bbox=[38, 293, 245, 65] + Scatter bbox=[38, 293, 245, 65] + GlyphRenderer bbox=[38, 277, 245, 65] + Scatter bbox=[38, 277, 245, 65] + GlyphRenderer bbox=[38, 261, 245, 65] + Scatter bbox=[38, 261, 245, 65] + GlyphRenderer bbox=[38, 245, 245, 65] + Scatter bbox=[38, 245, 245, 65] + GlyphRenderer bbox=[38, 229, 245, 64] + Scatter bbox=[38, 229, 245, 64] + GlyphRenderer bbox=[38, 212, 245, 65] + Scatter bbox=[38, 212, 245, 65] + GlyphRenderer bbox=[38, 196, 245, 65] + Scatter bbox=[38, 196, 245, 65] + GlyphRenderer bbox=[38, 180, 245, 65] + Scatter bbox=[38, 180, 245, 65] + GlyphRenderer bbox=[38, 164, 245, 65] + Scatter bbox=[38, 164, 245, 65] + GlyphRenderer bbox=[38, 147, 245, 65] + Scatter bbox=[38, 147, 245, 65] + GlyphRenderer bbox=[38, 131, 245, 65] + Scatter bbox=[38, 131, 245, 65] + GlyphRenderer bbox=[38, 115, 245, 65] + Scatter bbox=[38, 115, 245, 65] + GlyphRenderer bbox=[38, 99, 245, 65] + Scatter bbox=[38, 99, 245, 65] + GlyphRenderer bbox=[38, 83, 245, 64] + Scatter bbox=[38, 83, 245, 64] + GlyphRenderer bbox=[38, 66, 245, 65] + Scatter bbox=[38, 66, 245, 65] + GlyphRenderer bbox=[38, 50, 245, 65] + Scatter bbox=[38, 50, 245, 65] LinearAxis bbox=[26, 578, 269, 22] - LinearAxis bbox=[0, 27, 26, 551] - Title bbox=[26, 0, 269, 27] + LinearAxis bbox=[0, 25, 26, 553] + Title bbox=[26, 0, 269, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.png index debf48129c9..e69b820f79e 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_glyph_methods_and_rotation.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.blf index 8ae54b68b46..b42331ac68d 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.blf @@ -1,151 +1,151 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] + CartesianFrame bbox=[20, 25, 275, 253] GlyphRenderer bbox=[46, 249, 0, 0] Scatter bbox=[46, 249, 0, 0] - GlyphRenderer bbox=[57, 201, 0, 0] - Scatter bbox=[57, 201, 0, 0] - GlyphRenderer bbox=[68, 153, 0, 0] - Scatter bbox=[68, 153, 0, 0] - GlyphRenderer bbox=[78, 104, 0, 0] - Scatter bbox=[78, 104, 0, 0] - GlyphRenderer bbox=[89, 56, 0, 0] - Scatter bbox=[89, 56, 0, 0] + GlyphRenderer bbox=[57, 200, 0, 0] + Scatter bbox=[57, 200, 0, 0] + GlyphRenderer bbox=[68, 152, 0, 0] + Scatter bbox=[68, 152, 0, 0] + GlyphRenderer bbox=[78, 103, 0, 0] + Scatter bbox=[78, 103, 0, 0] + GlyphRenderer bbox=[89, 54, 0, 0] + Scatter bbox=[89, 54, 0, 0] GlyphRenderer bbox=[99, 249, 0, 0] Scatter bbox=[99, 249, 0, 0] - GlyphRenderer bbox=[110, 201, 0, 0] - Scatter bbox=[110, 201, 0, 0] - GlyphRenderer bbox=[120, 153, 0, 0] - Scatter bbox=[120, 153, 0, 0] - GlyphRenderer bbox=[131, 104, 0, 0] - Scatter bbox=[131, 104, 0, 0] - GlyphRenderer bbox=[142, 56, 0, 0] - Scatter bbox=[142, 56, 0, 0] + GlyphRenderer bbox=[110, 200, 0, 0] + Scatter bbox=[110, 200, 0, 0] + GlyphRenderer bbox=[120, 152, 0, 0] + Scatter bbox=[120, 152, 0, 0] + GlyphRenderer bbox=[131, 103, 0, 0] + Scatter bbox=[131, 103, 0, 0] + GlyphRenderer bbox=[142, 54, 0, 0] + Scatter bbox=[142, 54, 0, 0] GlyphRenderer bbox=[152, 249, 0, 0] Scatter bbox=[152, 249, 0, 0] - GlyphRenderer bbox=[163, 201, 0, 0] - Scatter bbox=[163, 201, 0, 0] - GlyphRenderer bbox=[173, 153, 0, 0] - Scatter bbox=[173, 153, 0, 0] - GlyphRenderer bbox=[184, 104, 0, 0] - Scatter bbox=[184, 104, 0, 0] - GlyphRenderer bbox=[195, 56, 0, 0] - Scatter bbox=[195, 56, 0, 0] + GlyphRenderer bbox=[163, 200, 0, 0] + Scatter bbox=[163, 200, 0, 0] + GlyphRenderer bbox=[173, 152, 0, 0] + Scatter bbox=[173, 152, 0, 0] + GlyphRenderer bbox=[184, 103, 0, 0] + Scatter bbox=[184, 103, 0, 0] + GlyphRenderer bbox=[195, 54, 0, 0] + Scatter bbox=[195, 54, 0, 0] GlyphRenderer bbox=[205, 249, 0, 0] Scatter bbox=[205, 249, 0, 0] - GlyphRenderer bbox=[216, 201, 0, 0] - Scatter bbox=[216, 201, 0, 0] - GlyphRenderer bbox=[226, 153, 0, 0] - Scatter bbox=[226, 153, 0, 0] - GlyphRenderer bbox=[237, 104, 0, 0] - Scatter bbox=[237, 104, 0, 0] - GlyphRenderer bbox=[247, 56, 0, 0] - Scatter bbox=[247, 56, 0, 0] + GlyphRenderer bbox=[216, 200, 0, 0] + Scatter bbox=[216, 200, 0, 0] + GlyphRenderer bbox=[226, 152, 0, 0] + Scatter bbox=[226, 152, 0, 0] + GlyphRenderer bbox=[237, 103, 0, 0] + Scatter bbox=[237, 103, 0, 0] + GlyphRenderer bbox=[247, 54, 0, 0] + Scatter bbox=[247, 54, 0, 0] GlyphRenderer bbox=[258, 249, 0, 0] Scatter bbox=[258, 249, 0, 0] - GlyphRenderer bbox=[269, 201, 0, 0] - Scatter bbox=[269, 201, 0, 0] + GlyphRenderer bbox=[269, 200, 0, 0] + Scatter bbox=[269, 200, 0, 0] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] + CartesianFrame bbox=[20, 25, 275, 253] GlyphRenderer bbox=[46, 249, 0, 0] Scatter bbox=[46, 249, 0, 0] - GlyphRenderer bbox=[57, 201, 0, 0] - Scatter bbox=[57, 201, 0, 0] - GlyphRenderer bbox=[68, 153, 0, 0] - Scatter bbox=[68, 153, 0, 0] - GlyphRenderer bbox=[78, 104, 0, 0] - Scatter bbox=[78, 104, 0, 0] - GlyphRenderer bbox=[89, 56, 0, 0] - Scatter bbox=[89, 56, 0, 0] + GlyphRenderer bbox=[57, 200, 0, 0] + Scatter bbox=[57, 200, 0, 0] + GlyphRenderer bbox=[68, 152, 0, 0] + Scatter bbox=[68, 152, 0, 0] + GlyphRenderer bbox=[78, 103, 0, 0] + Scatter bbox=[78, 103, 0, 0] + GlyphRenderer bbox=[89, 54, 0, 0] + Scatter bbox=[89, 54, 0, 0] GlyphRenderer bbox=[99, 249, 0, 0] Scatter bbox=[99, 249, 0, 0] - GlyphRenderer bbox=[110, 201, 0, 0] - Scatter bbox=[110, 201, 0, 0] - GlyphRenderer bbox=[120, 153, 0, 0] - Scatter bbox=[120, 153, 0, 0] - GlyphRenderer bbox=[131, 104, 0, 0] - Scatter bbox=[131, 104, 0, 0] - GlyphRenderer bbox=[142, 56, 0, 0] - Scatter bbox=[142, 56, 0, 0] + GlyphRenderer bbox=[110, 200, 0, 0] + Scatter bbox=[110, 200, 0, 0] + GlyphRenderer bbox=[120, 152, 0, 0] + Scatter bbox=[120, 152, 0, 0] + GlyphRenderer bbox=[131, 103, 0, 0] + Scatter bbox=[131, 103, 0, 0] + GlyphRenderer bbox=[142, 54, 0, 0] + Scatter bbox=[142, 54, 0, 0] GlyphRenderer bbox=[152, 249, 0, 0] Scatter bbox=[152, 249, 0, 0] - GlyphRenderer bbox=[163, 201, 0, 0] - Scatter bbox=[163, 201, 0, 0] - GlyphRenderer bbox=[173, 153, 0, 0] - Scatter bbox=[173, 153, 0, 0] - GlyphRenderer bbox=[184, 104, 0, 0] - Scatter bbox=[184, 104, 0, 0] - GlyphRenderer bbox=[195, 56, 0, 0] - Scatter bbox=[195, 56, 0, 0] + GlyphRenderer bbox=[163, 200, 0, 0] + Scatter bbox=[163, 200, 0, 0] + GlyphRenderer bbox=[173, 152, 0, 0] + Scatter bbox=[173, 152, 0, 0] + GlyphRenderer bbox=[184, 103, 0, 0] + Scatter bbox=[184, 103, 0, 0] + GlyphRenderer bbox=[195, 54, 0, 0] + Scatter bbox=[195, 54, 0, 0] GlyphRenderer bbox=[205, 249, 0, 0] Scatter bbox=[205, 249, 0, 0] - GlyphRenderer bbox=[216, 201, 0, 0] - Scatter bbox=[216, 201, 0, 0] - GlyphRenderer bbox=[226, 153, 0, 0] - Scatter bbox=[226, 153, 0, 0] - GlyphRenderer bbox=[237, 104, 0, 0] - Scatter bbox=[237, 104, 0, 0] - GlyphRenderer bbox=[247, 56, 0, 0] - Scatter bbox=[247, 56, 0, 0] + GlyphRenderer bbox=[216, 200, 0, 0] + Scatter bbox=[216, 200, 0, 0] + GlyphRenderer bbox=[226, 152, 0, 0] + Scatter bbox=[226, 152, 0, 0] + GlyphRenderer bbox=[237, 103, 0, 0] + Scatter bbox=[237, 103, 0, 0] + GlyphRenderer bbox=[247, 54, 0, 0] + Scatter bbox=[247, 54, 0, 0] GlyphRenderer bbox=[258, 249, 0, 0] Scatter bbox=[258, 249, 0, 0] - GlyphRenderer bbox=[269, 201, 0, 0] - Scatter bbox=[269, 201, 0, 0] + GlyphRenderer bbox=[269, 200, 0, 0] + Scatter bbox=[269, 200, 0, 0] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] + CartesianFrame bbox=[20, 25, 275, 253] GlyphRenderer bbox=[46, 249, 0, 0] Scatter bbox=[46, 249, 0, 0] - GlyphRenderer bbox=[57, 201, 0, 0] - Scatter bbox=[57, 201, 0, 0] - GlyphRenderer bbox=[68, 153, 0, 0] - Scatter bbox=[68, 153, 0, 0] - GlyphRenderer bbox=[78, 104, 0, 0] - Scatter bbox=[78, 104, 0, 0] - GlyphRenderer bbox=[89, 56, 0, 0] - Scatter bbox=[89, 56, 0, 0] + GlyphRenderer bbox=[57, 200, 0, 0] + Scatter bbox=[57, 200, 0, 0] + GlyphRenderer bbox=[68, 152, 0, 0] + Scatter bbox=[68, 152, 0, 0] + GlyphRenderer bbox=[78, 103, 0, 0] + Scatter bbox=[78, 103, 0, 0] + GlyphRenderer bbox=[89, 54, 0, 0] + Scatter bbox=[89, 54, 0, 0] GlyphRenderer bbox=[99, 249, 0, 0] Scatter bbox=[99, 249, 0, 0] - GlyphRenderer bbox=[110, 201, 0, 0] - Scatter bbox=[110, 201, 0, 0] - GlyphRenderer bbox=[120, 153, 0, 0] - Scatter bbox=[120, 153, 0, 0] - GlyphRenderer bbox=[131, 104, 0, 0] - Scatter bbox=[131, 104, 0, 0] - GlyphRenderer bbox=[142, 56, 0, 0] - Scatter bbox=[142, 56, 0, 0] + GlyphRenderer bbox=[110, 200, 0, 0] + Scatter bbox=[110, 200, 0, 0] + GlyphRenderer bbox=[120, 152, 0, 0] + Scatter bbox=[120, 152, 0, 0] + GlyphRenderer bbox=[131, 103, 0, 0] + Scatter bbox=[131, 103, 0, 0] + GlyphRenderer bbox=[142, 54, 0, 0] + Scatter bbox=[142, 54, 0, 0] GlyphRenderer bbox=[152, 249, 0, 0] Scatter bbox=[152, 249, 0, 0] - GlyphRenderer bbox=[163, 201, 0, 0] - Scatter bbox=[163, 201, 0, 0] - GlyphRenderer bbox=[173, 153, 0, 0] - Scatter bbox=[173, 153, 0, 0] - GlyphRenderer bbox=[184, 104, 0, 0] - Scatter bbox=[184, 104, 0, 0] - GlyphRenderer bbox=[195, 56, 0, 0] - Scatter bbox=[195, 56, 0, 0] + GlyphRenderer bbox=[163, 200, 0, 0] + Scatter bbox=[163, 200, 0, 0] + GlyphRenderer bbox=[173, 152, 0, 0] + Scatter bbox=[173, 152, 0, 0] + GlyphRenderer bbox=[184, 103, 0, 0] + Scatter bbox=[184, 103, 0, 0] + GlyphRenderer bbox=[195, 54, 0, 0] + Scatter bbox=[195, 54, 0, 0] GlyphRenderer bbox=[205, 249, 0, 0] Scatter bbox=[205, 249, 0, 0] - GlyphRenderer bbox=[216, 201, 0, 0] - Scatter bbox=[216, 201, 0, 0] - GlyphRenderer bbox=[226, 153, 0, 0] - Scatter bbox=[226, 153, 0, 0] - GlyphRenderer bbox=[237, 104, 0, 0] - Scatter bbox=[237, 104, 0, 0] - GlyphRenderer bbox=[247, 56, 0, 0] - Scatter bbox=[247, 56, 0, 0] + GlyphRenderer bbox=[216, 200, 0, 0] + Scatter bbox=[216, 200, 0, 0] + GlyphRenderer bbox=[226, 152, 0, 0] + Scatter bbox=[226, 152, 0, 0] + GlyphRenderer bbox=[237, 103, 0, 0] + Scatter bbox=[237, 103, 0, 0] + GlyphRenderer bbox=[247, 54, 0, 0] + Scatter bbox=[247, 54, 0, 0] GlyphRenderer bbox=[258, 249, 0, 0] Scatter bbox=[258, 249, 0, 0] - GlyphRenderer bbox=[269, 201, 0, 0] - Scatter bbox=[269, 201, 0, 0] + GlyphRenderer bbox=[269, 200, 0, 0] + Scatter bbox=[269, 200, 0, 0] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.png index 1a028a1dd4b..7f8b8665607 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_hatch.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.blf index 55194d00681..5b267a1e4b5 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 525, 420] Figure bbox=[0, 0, 175, 420] Canvas bbox=[0, 0, 175, 420] - CartesianFrame bbox=[29, 27, 141, 371] - GlyphRenderer bbox=[53, 54, 94, 0] - Scatter bbox=[53, 54, 94, 0] - GlyphRenderer bbox=[53, 100, 94, 0] - Scatter bbox=[53, 100, 94, 0] - GlyphRenderer bbox=[53, 146, 94, 0] - Scatter bbox=[53, 146, 94, 0] - GlyphRenderer bbox=[53, 192, 94, 0] - Scatter bbox=[53, 192, 94, 0] - GlyphRenderer bbox=[53, 238, 94, 0] - Scatter bbox=[53, 238, 94, 0] + CartesianFrame bbox=[29, 25, 141, 373] + GlyphRenderer bbox=[53, 53, 94, 0] + Scatter bbox=[53, 53, 94, 0] + GlyphRenderer bbox=[53, 99, 94, 0] + Scatter bbox=[53, 99, 94, 0] + GlyphRenderer bbox=[53, 145, 94, 0] + Scatter bbox=[53, 145, 94, 0] + GlyphRenderer bbox=[53, 191, 94, 0] + Scatter bbox=[53, 191, 94, 0] + GlyphRenderer bbox=[53, 237, 94, 0] + Scatter bbox=[53, 237, 94, 0] GlyphRenderer bbox=[53, 283, 94, 0] Scatter bbox=[53, 283, 94, 0] GlyphRenderer bbox=[53, 329, 94, 0] @@ -19,21 +19,21 @@ Row bbox=[0, 0, 525, 420] GlyphRenderer bbox=[53, 375, 94, 0] Scatter bbox=[53, 375, 94, 0] LinearAxis bbox=[29, 398, 141, 22] - LinearAxis bbox=[0, 27, 29, 371] - Title bbox=[29, 0, 141, 27] + LinearAxis bbox=[0, 25, 29, 373] + Title bbox=[29, 0, 141, 25] Figure bbox=[175, 0, 175, 420] Canvas bbox=[0, 0, 175, 420] - CartesianFrame bbox=[29, 27, 141, 371] - GlyphRenderer bbox=[53, 54, 94, 0] - Scatter bbox=[53, 54, 94, 0] - GlyphRenderer bbox=[53, 100, 94, 0] - Scatter bbox=[53, 100, 94, 0] - GlyphRenderer bbox=[53, 146, 94, 0] - Scatter bbox=[53, 146, 94, 0] - GlyphRenderer bbox=[53, 192, 94, 0] - Scatter bbox=[53, 192, 94, 0] - GlyphRenderer bbox=[53, 238, 94, 0] - Scatter bbox=[53, 238, 94, 0] + CartesianFrame bbox=[29, 25, 141, 373] + GlyphRenderer bbox=[53, 53, 94, 0] + Scatter bbox=[53, 53, 94, 0] + GlyphRenderer bbox=[53, 99, 94, 0] + Scatter bbox=[53, 99, 94, 0] + GlyphRenderer bbox=[53, 145, 94, 0] + Scatter bbox=[53, 145, 94, 0] + GlyphRenderer bbox=[53, 191, 94, 0] + Scatter bbox=[53, 191, 94, 0] + GlyphRenderer bbox=[53, 237, 94, 0] + Scatter bbox=[53, 237, 94, 0] GlyphRenderer bbox=[53, 283, 94, 0] Scatter bbox=[53, 283, 94, 0] GlyphRenderer bbox=[53, 329, 94, 0] @@ -41,21 +41,21 @@ Row bbox=[0, 0, 525, 420] GlyphRenderer bbox=[53, 375, 94, 0] Scatter bbox=[53, 375, 94, 0] LinearAxis bbox=[29, 398, 141, 22] - LinearAxis bbox=[0, 27, 29, 371] - Title bbox=[29, 0, 141, 27] + LinearAxis bbox=[0, 25, 29, 373] + Title bbox=[29, 0, 141, 25] Figure bbox=[350, 0, 175, 420] Canvas bbox=[0, 0, 175, 420] - CartesianFrame bbox=[29, 27, 141, 371] - GlyphRenderer bbox=[53, 54, 94, 0] - Scatter bbox=[53, 54, 94, 0] - GlyphRenderer bbox=[53, 100, 94, 0] - Scatter bbox=[53, 100, 94, 0] - GlyphRenderer bbox=[53, 146, 94, 0] - Scatter bbox=[53, 146, 94, 0] - GlyphRenderer bbox=[53, 192, 94, 0] - Scatter bbox=[53, 192, 94, 0] - GlyphRenderer bbox=[53, 238, 94, 0] - Scatter bbox=[53, 238, 94, 0] + CartesianFrame bbox=[29, 25, 141, 373] + GlyphRenderer bbox=[53, 53, 94, 0] + Scatter bbox=[53, 53, 94, 0] + GlyphRenderer bbox=[53, 99, 94, 0] + Scatter bbox=[53, 99, 94, 0] + GlyphRenderer bbox=[53, 145, 94, 0] + Scatter bbox=[53, 145, 94, 0] + GlyphRenderer bbox=[53, 191, 94, 0] + Scatter bbox=[53, 191, 94, 0] + GlyphRenderer bbox=[53, 237, 94, 0] + Scatter bbox=[53, 237, 94, 0] GlyphRenderer bbox=[53, 283, 94, 0] Scatter bbox=[53, 283, 94, 0] GlyphRenderer bbox=[53, 329, 94, 0] @@ -63,5 +63,5 @@ Row bbox=[0, 0, 525, 420] GlyphRenderer bbox=[53, 375, 94, 0] Scatter bbox=[53, 375, 94, 0] LinearAxis bbox=[29, 398, 141, 22] - LinearAxis bbox=[0, 27, 29, 371] - Title bbox=[29, 0, 141, 27] + LinearAxis bbox=[0, 25, 29, 373] + Title bbox=[29, 0, 141, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.png index 342da6faf4c..02f52e0d99b 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_line_join.png differ diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.blf b/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.blf index 15f0c73249a..01f976cd9c1 100644 --- a/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.blf +++ b/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 450, 150] Figure bbox=[0, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Scatter bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Scatter bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[150, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Scatter bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Scatter bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] Figure bbox=[300, 0, 150, 150] Canvas bbox=[0, 0, 150, 150] - CartesianFrame bbox=[29, 27, 116, 101] - GlyphRenderer bbox=[34, 32, 106, 91] - Scatter bbox=[34, 32, 106, 91] + CartesianFrame bbox=[29, 25, 116, 103] + GlyphRenderer bbox=[34, 30, 106, 93] + Scatter bbox=[34, 30, 106, 93] LinearAxis bbox=[29, 128, 116, 22] - LinearAxis bbox=[0, 27, 29, 101] - Title bbox=[29, 0, 116, 27] + LinearAxis bbox=[0, 25, 29, 103] + Title bbox=[29, 0, 116, 25] diff --git a/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.png b/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.png index bd1bd4b5d13..b2c9eba9de7 100644 Binary files a/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.png and b/bokehjs/test/baselines/linux/Marker_glyph__should_support_multiple_marker_types_in_scatter.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.blf b/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.blf index 914b2855394..c4cb6972e0d 100644 --- a/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.blf +++ b/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.blf @@ -1,8 +1,8 @@ GridBox bbox=[0, 0, 200, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[31, 41, 153, 140] - Rect bbox=[31, 41, 153, 140] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[31, 39, 153, 142] + Rect bbox=[31, 39, 153, 142] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.png index d5ecf916d82..ff47b7744d1 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_Bokeh_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.blf b/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.blf index 422fedd723d..62c7d843d08 100644 --- a/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.blf +++ b/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.blf @@ -1,246 +1,246 @@ GridBox bbox=[0, 0, 1200, 1200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[0, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[0, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 400, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[0, 600, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 600, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 600, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 600, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 600, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 600, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[0, 800, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 800, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 800, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 800, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[37, 41, 147, 140] - Rect bbox=[37, 41, 147, 140] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[37, 39, 147, 142] + Rect bbox=[37, 39, 147, 142] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 800, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[37, 41, 147, 140] - Rect bbox=[37, 41, 147, 140] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[37, 39, 147, 142] + Rect bbox=[37, 39, 147, 142] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 800, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[33, 35, 155, 152] - Rect bbox=[33, 35, 155, 152] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[33, 34, 155, 153] + Rect bbox=[33, 34, 155, 153] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[0, 1000, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 1000, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[37, 41, 147, 140] - Rect bbox=[37, 41, 147, 140] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[37, 39, 147, 142] + Rect bbox=[37, 39, 147, 142] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 1000, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 1000, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[37, 41, 147, 140] - Rect bbox=[37, 41, 147, 140] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[37, 39, 147, 142] + Rect bbox=[37, 39, 147, 142] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 1000, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[33, 35, 155, 152] - Rect bbox=[33, 35, 155, 152] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[33, 34, 155, 153] + Rect bbox=[33, 34, 155, 153] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.png index e95ea0758fd..c0c1f27f353 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_Brewer_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.blf b/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.blf index 914b2855394..c4cb6972e0d 100644 --- a/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.blf +++ b/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.blf @@ -1,8 +1,8 @@ GridBox bbox=[0, 0, 200, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[31, 41, 153, 140] - Rect bbox=[31, 41, 153, 140] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[31, 39, 153, 142] + Rect bbox=[31, 39, 153, 142] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.png index 7e302efc881..c902d9a6b8d 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_Colorblind_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.blf b/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.blf index 1027555c94a..6f87f79aaec 100644 --- a/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.blf +++ b/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.blf @@ -1,29 +1,29 @@ GridBox bbox=[0, 0, 800, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 38, 153, 147] - Rect bbox=[34, 38, 153, 147] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 36, 153, 148] + Rect bbox=[34, 36, 153, 148] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[30, 32, 161, 158] - Rect bbox=[30, 32, 161, 158] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[30, 30, 161, 160] + Rect bbox=[30, 30, 161, 160] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[30, 32, 161, 158] - Rect bbox=[30, 32, 161, 158] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[30, 30, 161, 160] + Rect bbox=[30, 30, 161, 160] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[30, 32, 161, 158] - Rect bbox=[30, 32, 161, 158] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[30, 30, 161, 160] + Rect bbox=[30, 30, 161, 160] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.png index 76b26d83932..3f63be396de 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_D3_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.blf b/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.blf index 87225564ca1..fd9dca6d5d7 100644 --- a/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.blf +++ b/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.blf @@ -1,43 +1,43 @@ GridBox bbox=[0, 0, 1200, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[800, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.png index d17c5b101c1..2562e3c3eac 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_MPL_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.blf b/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.blf index 1e7909281ac..cf71235891b 100644 --- a/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.blf +++ b/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.blf @@ -1,85 +1,85 @@ GridBox bbox=[0, 0, 1200, 400] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[38, 44, 145, 134] - Rect bbox=[38, 44, 145, 134] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[38, 42, 145, 136] + Rect bbox=[38, 42, 145, 136] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[49, 111, 117, 0] - Rect bbox=[49, 111, 117, 0] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[49, 110, 117, 0] + Rect bbox=[49, 110, 117, 0] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] Figure bbox=[400, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[33, 44, 150, 134] - Rect bbox=[33, 44, 150, 134] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[33, 42, 150, 136] + Rect bbox=[33, 42, 150, 136] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] Figure bbox=[600, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[31, 41, 153, 140] - Rect bbox=[31, 41, 153, 140] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[31, 39, 153, 142] + Rect bbox=[31, 39, 153, 142] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] Figure bbox=[800, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[40, 48, 141, 126] - Rect bbox=[40, 48, 141, 126] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[40, 46, 141, 128] + Rect bbox=[40, 46, 141, 128] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[35, 39, 151, 144] - Rect bbox=[35, 39, 151, 144] - CategoricalAxis bbox=[6, 27, 20, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[35, 37, 151, 146] + Rect bbox=[35, 37, 151, 146] + CategoricalAxis bbox=[6, 25, 20, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[0, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[34, 36, 153, 150] - Rect bbox=[34, 36, 153, 150] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[34, 34, 153, 152] + Rect bbox=[34, 34, 153, 152] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[30, 39, 155, 144] - Rect bbox=[30, 39, 155, 144] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[30, 37, 155, 146] + Rect bbox=[30, 37, 155, 146] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] Figure bbox=[400, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[30, 39, 155, 144] - Rect bbox=[30, 39, 155, 144] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[30, 37, 155, 146] + Rect bbox=[30, 37, 155, 146] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] Figure bbox=[600, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[20, 27, 175, 168] - GlyphRenderer bbox=[30, 39, 155, 144] - Rect bbox=[30, 39, 155, 144] - CategoricalAxis bbox=[0, 27, 20, 168] - Title bbox=[20, 0, 175, 27] + CartesianFrame bbox=[20, 25, 175, 170] + GlyphRenderer bbox=[30, 37, 155, 146] + Rect bbox=[30, 37, 155, 146] + CategoricalAxis bbox=[0, 25, 20, 170] + Title bbox=[20, 0, 175, 25] Figure bbox=[800, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[30, 31, 161, 160] - Rect bbox=[30, 31, 161, 160] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[30, 29, 161, 162] + Rect bbox=[30, 29, 161, 162] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] Figure bbox=[1000, 200, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 168] - GlyphRenderer bbox=[30, 31, 161, 160] - Rect bbox=[30, 31, 161, 160] - CategoricalAxis bbox=[0, 27, 26, 168] - Title bbox=[26, 0, 169, 27] + CartesianFrame bbox=[26, 25, 169, 170] + GlyphRenderer bbox=[30, 29, 161, 162] + Rect bbox=[30, 29, 161, 162] + CategoricalAxis bbox=[0, 25, 26, 170] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.png index 6e87525398b..b1a8eb21772 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_Tol_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Palettes__should_support_n=256_color_schemes.png b/bokehjs/test/baselines/linux/Palettes__should_support_n=256_color_schemes.png index c18bc5e3ee8..1ed4b686920 100644 Binary files a/bokehjs/test/baselines/linux/Palettes__should_support_n=256_color_schemes.png and b/bokehjs/test/baselines/linux/Palettes__should_support_n=256_color_schemes.png differ diff --git a/bokehjs/test/baselines/linux/Plot__in_issue_#12171__should_support_hold_render_property.png b/bokehjs/test/baselines/linux/Plot__in_issue_#12171__should_support_hold_render_property.png index aaa1c0ece6d..080461098c8 100644 Binary files a/bokehjs/test/baselines/linux/Plot__in_issue_#12171__should_support_hold_render_property.png and b/bokehjs/test/baselines/linux/Plot__in_issue_#12171__should_support_hold_render_property.png differ diff --git a/bokehjs/test/baselines/linux/Plot__in_issue_#7217__should_support_axes_with_different_scales.png b/bokehjs/test/baselines/linux/Plot__in_issue_#7217__should_support_axes_with_different_scales.png index 9204f4a68d8..aee9ae60ef0 100644 Binary files a/bokehjs/test/baselines/linux/Plot__in_issue_#7217__should_support_axes_with_different_scales.png and b/bokehjs/test/baselines/linux/Plot__in_issue_#7217__should_support_axes_with_different_scales.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout.png index aee99e792c8..f6c650d5370 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.blf b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.blf index 51a4164f63f..5b522898c3a 100644 --- a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.blf +++ b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.blf @@ -1,14 +1,14 @@ -Row bbox=[0, 0, 512, 249] - Figure bbox=[0, 0, 256, 249] - Canvas bbox=[0, 0, 256, 249] - CartesianFrame bbox=[26, 27, 200, 200] - GlyphRenderer bbox=[35, 36, 182, 182] - Scatter bbox=[35, 36, 182, 182] - LinearAxis bbox=[26, 227, 200, 22] - LinearAxis bbox=[0, 27, 26, 200] - Title bbox=[26, 0, 200, 27] - ToolbarPanel bbox=[226, 27, 30, 200] - Toolbar bbox=[226, 27, 30, 200] +Row bbox=[0, 0, 512, 247] + Figure bbox=[0, 0, 256, 247] + Canvas bbox=[0, 0, 256, 247] + CartesianFrame bbox=[26, 25, 200, 200] + GlyphRenderer bbox=[35, 34, 182, 182] + Scatter bbox=[35, 34, 182, 182] + LinearAxis bbox=[26, 225, 200, 22] + LinearAxis bbox=[0, 25, 26, 200] + Title bbox=[26, 0, 200, 25] + ToolbarPanel bbox=[226, 25, 30, 200] + Toolbar bbox=[226, 25, 30, 200] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] @@ -16,14 +16,14 @@ Row bbox=[0, 0, 512, 249] ClickButton bbox=[0, 147, 30, 30] Figure bbox=[256, 0, 256, 227] Canvas bbox=[0, 0, 256, 227] - CartesianFrame bbox=[26, 27, 200, 200] - GlyphRenderer bbox=[35, 36, 182, 182] - Scatter bbox=[35, 36, 182, 182] - LinearAxis bbox=[26, 227, 200, 22] - LinearAxis bbox=[0, 27, 26, 200] - Title bbox=[26, 27, 200, 0] - ToolbarPanel bbox=[226, 27, 30, 200] - Toolbar bbox=[226, 27, 30, 200] + CartesianFrame bbox=[26, 25, 200, 200] + GlyphRenderer bbox=[35, 34, 182, 182] + Scatter bbox=[35, 34, 182, 182] + LinearAxis bbox=[26, 225, 200, 22] + LinearAxis bbox=[0, 25, 26, 200] + Title bbox=[26, 25, 200, 0] + ToolbarPanel bbox=[226, 25, 30, 200] + Toolbar bbox=[226, 25, 30, 200] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.png index c2df4c86513..2859b2399f6 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_200px_x_200px_in_a_layout_with_a_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_300px_x_300px.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_300px_x_300px.png index dc476d621eb..efbd0c456e6 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_300px_x_300px.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_frame_300px_x_300px.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_fixed_plot.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_fixed_plot.png index aa11a7e1b95..a04c687fbbe 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_fixed_plot.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_fixed_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_0.8.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_0.8.png index d5d186f3d3f..bf1addf3f50 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_0.8.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_0.8.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.0.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.0.png index aa11a7e1b95..a04c687fbbe 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.0.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.0.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.25.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.25.png index 33b12699550..892870efa02 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.25.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot,_aspect_1.25.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot.png b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot.png index 6a49498f98a..2052f558481 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot.png and b/bokehjs/test/baselines/linux/Plot__should_allow_fixed_x_max_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_0.8.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_0.8.png index 9ed09fe6aa9..e13a88e9f88 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_0.8.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_0.8.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.0.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.0.png index aa11a7e1b95..a04c687fbbe 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.0.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.0.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.25.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.25.png index 0048228e4e0..aab9064d067 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.25.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot,_aspect_1.25.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot.png index cade8bb209e..fd53cf9a799 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_fixed_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_0.8.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_0.8.png index 3bb26ca3911..b850f8ac942 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_0.8.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_0.8.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.0.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.0.png index 4fa2c764d62..9aacd9b58ea 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.0.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.0.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.25.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.25.png index c5daf6bbc1a..a0cc193d47c 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.25.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot,_aspect_1.25.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot.png b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot.png index 4fa2c764d62..9aacd9b58ea 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot.png and b/bokehjs/test/baselines/linux/Plot__should_allow_max_x_max_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_no_toolbar_and_no_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_no_toolbar_and_no_title.png index 4a281354d91..1e772c3d822 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_no_toolbar_and_no_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_no_toolbar_and_no_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_to_resize_itself_when_width_changes.png b/bokehjs/test/baselines/linux/Plot__should_allow_to_resize_itself_when_width_changes.png index bd451f34ebc..d470a597a6c 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_to_resize_itself_when_width_changes.png and b/bokehjs/test/baselines/linux/Plot__should_allow_to_resize_itself_when_width_changes.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_inside_the_frame.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_inside_the_frame.png index 4491bb58694..f577e337cb3 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_inside_the_frame.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_inside_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.blf b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.blf index 4d07415e285..865f78b2ada 100644 --- a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.blf +++ b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.blf @@ -5,7 +5,7 @@ Figure bbox=[0, 0, 200, 200] Scatter bbox=[34, 37, 153, 134] LinearAxis bbox=[26, 178, 169, 22] LinearAxis bbox=[0, 30, 26, 148] - Title bbox=[26, 0, 69, 27] + Title bbox=[26, 0, 69, 25] ToolbarPanel bbox=[95, 0, 100, 30] Toolbar bbox=[95, 0, 100, 30] OnOffButton bbox=[14, 0, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.png index b14da6de3d9..138703f64c9 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_with_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_without_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_without_title.png index e560018d86c..60e69b47192 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_without_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_above_without_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_inside_the_frame.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_inside_the_frame.png index 7b5d3e0419c..7e52b6ab6a6 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_inside_the_frame.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_inside_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.blf b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.blf index 70736eca0c0..025b24679ea 100644 --- a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.blf +++ b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.blf @@ -5,7 +5,7 @@ Figure bbox=[0, 0, 200, 200] Scatter bbox=[34, 12, 153, 130] LinearAxis bbox=[26, 148, 169, 22] LinearAxis bbox=[0, 5, 26, 143] - Title bbox=[26, 170, 69, 27] + Title bbox=[26, 170, 69, 25] ToolbarPanel bbox=[95, 170, 100, 30] Toolbar bbox=[95, 170, 100, 30] OnOffButton bbox=[14, 0, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.png index 600c9c33059..01e3e165677 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_with_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_without_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_without_title.png index cef729d8d2e..f6721f3b9de 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_without_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_below_without_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_inside_the_frame.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_inside_the_frame.png index e691a12a943..65fd6077afa 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_inside_the_frame.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_inside_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.blf b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.blf index e1d8b2d2694..c9905aa1373 100644 --- a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.blf +++ b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.blf @@ -5,7 +5,7 @@ Figure bbox=[0, 0, 200, 200] Scatter bbox=[62, 13, 127, 157] LinearAxis bbox=[56, 178, 139, 22] LinearAxis bbox=[30, 5, 26, 173] - Title bbox=[0, 105, 27, 73] + Title bbox=[0, 105, 25, 73] ToolbarPanel bbox=[0, 5, 30, 100] Toolbar bbox=[0, 5, 30, 100] OnOffButton bbox=[0, 25, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.png index 18163d64379..97b3b8969f4 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_with_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_without_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_without_title.png index 49bb52f8dcc..5565d15b240 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_without_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_left_without_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_inside_the_frame.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_inside_the_frame.png index 5f48262c066..c978bb2143e 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_inside_the_frame.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_inside_the_frame.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.blf b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.blf index fb7298dc75a..f82ebd850a0 100644 --- a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.blf +++ b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.blf @@ -5,7 +5,7 @@ Figure bbox=[0, 0, 200, 200] Scatter bbox=[33, 13, 130, 157] LinearAxis bbox=[26, 178, 144, 22] LinearAxis bbox=[0, 5, 26, 173] - Title bbox=[170, 105, 27, 73] + Title bbox=[170, 105, 25, 73] ToolbarPanel bbox=[170, 5, 30, 100] Toolbar bbox=[170, 5, 30, 100] OnOffButton bbox=[0, 25, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.png index b7f86dbf370..abee8edfa70 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_with_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_without_title.png b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_without_title.png index 6fa91dbe27b..e62dacf33dc 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_without_title.png and b/bokehjs/test/baselines/linux/Plot__should_allow_toolbar_placement_right_without_title.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_'block'_flow_mode.png b/bokehjs/test/baselines/linux/Plot__should_support_'block'_flow_mode.png index 83bd9ce76ca..7a0ae42b84e 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_'block'_flow_mode.png and b/bokehjs/test/baselines/linux/Plot__should_support_'block'_flow_mode.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_'inline'_flow_mode.png b/bokehjs/test/baselines/linux/Plot__should_support_'inline'_flow_mode.png index baa8554beae..700248323ac 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_'inline'_flow_mode.png and b/bokehjs/test/baselines/linux/Plot__should_support_'inline'_flow_mode.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.blf b/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.blf index 08a75465e2d..ad2fd2d580d 100644 --- a/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.blf +++ b/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.blf @@ -1,16 +1,16 @@ Pane bbox=[0, 0, 650, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[39, 27, 231, 251] - GlyphRenderer bbox=[155, 153, 0, 0] - Rect bbox=[155, 153, 0, 0] - GlyphRenderer bbox=[50, 48, 210, 210] - Circle bbox=[50, 48, 210, 210] + CartesianFrame bbox=[39, 25, 231, 253] + GlyphRenderer bbox=[155, 152, 0, 0] + Rect bbox=[155, 152, 0, 0] + GlyphRenderer bbox=[50, 47, 210, 210] + Circle bbox=[50, 47, 210, 210] LinearAxis bbox=[39, 278, 231, 22] - LinearAxis bbox=[0, 27, 39, 251] - Title bbox=[39, 0, 231, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 39, 253] + Title bbox=[39, 0, 231, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] @@ -19,16 +19,16 @@ Pane bbox=[0, 0, 650, 300] ClickButton bbox=[0, 177, 30, 30] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[39, 27, 231, 251] - GlyphRenderer bbox=[155, 153, 0, 0] - Rect bbox=[155, 153, 0, 0] - GlyphRenderer bbox=[50, 38, 210, 229] - Circle bbox=[50, 38, 210, 229] + CartesianFrame bbox=[39, 25, 231, 253] + GlyphRenderer bbox=[155, 152, 0, 0] + Rect bbox=[155, 152, 0, 0] + GlyphRenderer bbox=[50, 36, 210, 231] + Circle bbox=[50, 36, 210, 231] LinearAxis bbox=[39, 278, 231, 22] - LinearAxis bbox=[0, 27, 39, 251] - Title bbox=[39, 0, 231, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 39, 253] + Title bbox=[39, 0, 231, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.png b/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.png index 893d7b5c4b3..0446528332c 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.png and b/bokehjs/test/baselines/linux/Plot__should_support_match_aspect.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_above_a_plot.png b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_above_a_plot.png index 47669f786d8..451fe1b757f 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_above_a_plot.png and b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_above_a_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_below_a_plot.png b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_below_a_plot.png index 78579c6e950..4c4d47ba211 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_below_a_plot.png and b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_below_a_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_left_of_a_plot.png b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_left_of_a_plot.png index ba7c89cf25b..20c3039eaf1 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_left_of_a_plot.png and b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_left_of_a_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_right_of_a_plot.png b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_right_of_a_plot.png index c29756303d2..16ed7fd1eeb 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_right_of_a_plot.png and b/bokehjs/test/baselines/linux/Plot__should_support_toolbar's_overflow_menu__with_toolbar_located_right_of_a_plot.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.blf b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.blf index 47e77f7558b..ce9e9c66d9b 100644 --- a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.blf +++ b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[33, 27, 237, 251] - GlyphRenderer bbox=[73, 27, 158, 251] - Scatter bbox=[73, 27, 158, 251] + CartesianFrame bbox=[33, 25, 237, 253] + GlyphRenderer bbox=[73, 25, 158, 253] + Scatter bbox=[73, 25, 158, 253] LinearAxis bbox=[33, 278, 237, 22] - LinearAxis bbox=[0, 27, 33, 251] - Title bbox=[33, 0, 237, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 33, 253] + Title bbox=[33, 0, 237, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.png b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.png index 80737e8dd93..feabfd1e9d2 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.png and b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_data_changes.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.blf b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.blf index aebc238312d..758daaec849 100644 --- a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.blf +++ b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 241, 251] - GlyphRenderer bbox=[-11, -98, 321, 502] - Scatter bbox=[-11, -98, 321, 502] + CartesianFrame bbox=[29, 25, 241, 253] + GlyphRenderer bbox=[-11, -101, 321, 506] + Scatter bbox=[-11, -101, 321, 506] LinearAxis bbox=[29, 278, 241, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 241, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 241, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.png b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.png index 56a036f6929..9b040046f23 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.png and b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='x'_when_range_changes.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.blf b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.blf index e646b9d755c..8746bede3ab 100644 --- a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.blf +++ b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 250, 251] - GlyphRenderer bbox=[20, 69, 250, 167] - Scatter bbox=[20, 69, 250, 167] + CartesianFrame bbox=[20, 25, 250, 253] + GlyphRenderer bbox=[20, 67, 250, 169] + Scatter bbox=[20, 67, 250, 169] LinearAxis bbox=[20, 278, 250, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 250, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 250, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.png b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.png index b0b9f46bb3b..9e2c12f63c0 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.png and b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_data_changes.png differ diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.blf b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.blf index 2af0680227e..142367f6534 100644 --- a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.blf +++ b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.blf @@ -1,13 +1,13 @@ Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 241, 251] - GlyphRenderer bbox=[-91, -15, 482, 335] - Scatter bbox=[-91, -15, 482, 335] + CartesianFrame bbox=[29, 25, 241, 253] + GlyphRenderer bbox=[-91, -17, 482, 337] + Scatter bbox=[-91, -17, 482, 337] LinearAxis bbox=[29, 278, 241, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 241, 27] - ToolbarPanel bbox=[270, 27, 30, 251] - Toolbar bbox=[270, 27, 30, 251] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 241, 25] + ToolbarPanel bbox=[270, 25, 30, 253] + Toolbar bbox=[270, 25, 30, 253] OnOffButton bbox=[0, 25, 30, 30] OnOffButton bbox=[0, 55, 30, 30] OnOffButton bbox=[0, 86, 30, 30] diff --git a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.png b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.png index 5c465f8a67f..ce7c11f19c4 100644 Binary files a/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.png and b/bokehjs/test/baselines/linux/Plot__should_support_windowed_auto-ranging__with_window_axis='y'_when_range_changes.png differ diff --git a/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_display_on_log_axis.png b/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_display_on_log_axis.png index 0ca3fad7b95..93c75cf6694 100644 Binary files a/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_display_on_log_axis.png and b/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_display_on_log_axis.png differ diff --git a/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_circle_glyphs.png b/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_circle_glyphs.png index 3e307cdce6f..4907573fdd6 100644 Binary files a/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_circle_glyphs.png and b/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_circle_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_line_glyphs.png b/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_line_glyphs.png index 8c440d2ba2b..b4b9704fb5c 100644 Binary files a/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_line_glyphs.png and b/bokehjs/test/baselines/linux/Plot__with_webgl_backend__should_allow_empty_line_glyphs.png differ diff --git a/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.blf b/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.blf index b033780a95c..85e57fa215b 100644 --- a/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.blf +++ b/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] + CartesianFrame bbox=[33, 25, 162, 153] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - PolyAnnotation bbox=[49, 87, 89, 46] - PolyAnnotation bbox=[98, 42, 73, 68] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + PolyAnnotation bbox=[49, 86, 89, 46] + PolyAnnotation bbox=[98, 40, 73, 69] + Title bbox=[33, 0, 162, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[33, 27, 162, 151] + CartesianFrame bbox=[33, 25, 162, 153] LinearAxis bbox=[33, 178, 162, 22] - LinearAxis bbox=[0, 27, 33, 151] - PolyAnnotation bbox=[49, 87, 89, 46] - PolyAnnotation bbox=[98, 42, 73, 68] - Title bbox=[33, 0, 162, 27] + LinearAxis bbox=[0, 25, 33, 153] + PolyAnnotation bbox=[49, 86, 89, 46] + PolyAnnotation bbox=[98, 40, 73, 69] + Title bbox=[33, 0, 162, 25] diff --git a/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.png b/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.png index 3ab5429d532..f842d05d3ba 100644 Binary files a/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.png and b/bokehjs/test/baselines/linux/PolyAnnotation_annotation__should_support_positioning_in_data_space.png differ diff --git a/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='none'.png b/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='none'.png index 0133b24e472..dde1840aa2f 100644 Binary files a/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='none'.png and b/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='none'.png differ diff --git a/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='pan'.png b/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='pan'.png index 051d0f7755c..5d893ad22dd 100644 Binary files a/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='pan'.png and b/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='pan'.png differ diff --git a/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='tap'.png b/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='tap'.png index 051d0f7755c..5d893ad22dd 100644 Binary files a/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='tap'.png and b/bokehjs/test/baselines/linux/RangeTool__should_support_start_gesture='tap'.png differ diff --git a/bokehjs/test/baselines/linux/Rect_glyph__should_support_adding_new_data_point_to_existing_glyph.png b/bokehjs/test/baselines/linux/Rect_glyph__should_support_adding_new_data_point_to_existing_glyph.png index 28c6b942ef5..2e89e9a7e84 100644 Binary files a/bokehjs/test/baselines/linux/Rect_glyph__should_support_adding_new_data_point_to_existing_glyph.png and b/bokehjs/test/baselines/linux/Rect_glyph__should_support_adding_new_data_point_to_existing_glyph.png differ diff --git a/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.blf b/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.blf index e8f689f944d..3c2e64e737d 100644 --- a/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.blf +++ b/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.blf @@ -1,43 +1,43 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[60, 60, 195, 0] - Rect bbox=[60, 60, 195, 0] - GlyphRenderer bbox=[60, 122, 195, 0] - Rect bbox=[60, 122, 195, 0] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[60, 58, 195, 0] + Rect bbox=[60, 58, 195, 0] + GlyphRenderer bbox=[60, 120, 195, 0] + Rect bbox=[60, 120, 195, 0] GlyphRenderer bbox=[60, 183, 195, 0] Rect bbox=[60, 183, 195, 0] GlyphRenderer bbox=[60, 245, 195, 0] Rect bbox=[60, 245, 195, 0] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[60, 60, 195, 0] - Rect bbox=[60, 60, 195, 0] - GlyphRenderer bbox=[60, 122, 195, 0] - Rect bbox=[60, 122, 195, 0] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[60, 58, 195, 0] + Rect bbox=[60, 58, 195, 0] + GlyphRenderer bbox=[60, 120, 195, 0] + Rect bbox=[60, 120, 195, 0] GlyphRenderer bbox=[60, 183, 195, 0] Rect bbox=[60, 183, 195, 0] GlyphRenderer bbox=[60, 245, 195, 0] Rect bbox=[60, 245, 195, 0] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[20, 27, 275, 251] - GlyphRenderer bbox=[60, 60, 195, 0] - Rect bbox=[60, 60, 195, 0] - GlyphRenderer bbox=[60, 122, 195, 0] - Rect bbox=[60, 122, 195, 0] + CartesianFrame bbox=[20, 25, 275, 253] + GlyphRenderer bbox=[60, 58, 195, 0] + Rect bbox=[60, 58, 195, 0] + GlyphRenderer bbox=[60, 120, 195, 0] + Rect bbox=[60, 120, 195, 0] GlyphRenderer bbox=[60, 183, 195, 0] Rect bbox=[60, 183, 195, 0] GlyphRenderer bbox=[60, 245, 195, 0] Rect bbox=[60, 245, 195, 0] LinearAxis bbox=[20, 278, 275, 22] - LinearAxis bbox=[0, 27, 20, 251] - Title bbox=[20, 0, 275, 27] + LinearAxis bbox=[0, 25, 20, 253] + Title bbox=[20, 0, 275, 25] diff --git a/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.png b/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.png index a6f94c3b13d..a4ce0ae1356 100644 Binary files a/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.png and b/bokehjs/test/baselines/linux/Rect_glyph__should_support_hatch_patterns_and_line_joins.png differ diff --git a/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_DataTable_to_fill_row.png b/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_DataTable_to_fill_row.png index 76ad89aeae6..e55b19f6b56 100644 Binary files a/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_DataTable_to_fill_row.png and b/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_DataTable_to_fill_row.png differ diff --git a/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_different_content_and_fixed_height.png b/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_different_content_and_fixed_height.png index eb0c06d02ea..e493d51b8d3 100644 Binary files a/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_different_content_and_fixed_height.png and b/bokehjs/test/baselines/linux/Rows_of_widgets__should_allow_different_content_and_fixed_height.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_custom_units_of_measurement.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_custom_units_of_measurement.png index b219bdbe521..136e8f678cb 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_custom_units_of_measurement.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_custom_units_of_measurement.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding.png index 8d1670b1838..3806a2cc2d9 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding_and_no_border.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding_and_no_border.png index 364eb82b032..4c5debf2061 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding_and_no_border.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_0px_padding_and_no_border.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_20px_padding.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_20px_padding.png index 3daac3a81ea..f3896f3d6ba 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_20px_padding.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_20px_padding.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png index 783dcef386f..443f0035905 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png index 783dcef386f..443f0035905 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__data.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__data.png index 6751dab5c01..2287e514e94 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__data.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__data.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__percent.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__percent.png index 99f37d4a26c..99f461a8af2 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__percent.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__percent.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png index 9dbe30c3bc8..39c4e221f8a 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png index 99f37d4a26c..99f461a8af2 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_200px_pixel_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_200px_pixel_length.png index 0e8ae644958..248a0c9a8f0 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_200px_pixel_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_200px_pixel_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_50%_percentage_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_50%_percentage_length.png index c79cfd54272..bcd19f1deac 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_50%_percentage_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_exact_sizing__and_with_50%_percentage_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_center.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_center.png index a3e6a7f70bf..f6b6a3df8c5 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_center.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_center.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_end.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_end.png index 3dab2b5af83..fe07b622a21 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_end.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_end.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_start.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_start.png index 6dafa416aa1..662de766c73 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_start.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above__with_label_align_start.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above_and_20px_standoff.png index d70a88daeb0..a369a84f1e6 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_above_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_center.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_center.png index 83643838fb8..24792cc8100 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_center.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_center.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_end.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_end.png index 13110a225ad..37a8ad510cd 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_end.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_end.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_start.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_start.png index 2ba102873a2..0d53bb4f532 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_start.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below__with_label_align_start.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below_and_20px_standoff.png index d4a905a4204..625a71b8359 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_below_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left.png index 2609d90369f..5ff1aa6e193 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left_and_20px_standoff.png index 7da4ffac78b..15dd0f4300f 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_left_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right.png index 2775e02e502..6f65418dd8f 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right_and_20px_standoff.png index 689364fd0d0..6e9a86ac908 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_horizontal_orientation__with_label_right_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__using_alignment.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__using_alignment.png index 2117921324d..225d9ee5078 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__using_alignment.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__using_alignment.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'data'_units.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'data'_units.png index 9a2c04a9138..c62a65930fe 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'data'_units.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'data'_units.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'percent'_units.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'percent'_units.png index 9735005048d..dae165637c4 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'percent'_units.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'percent'_units.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'screen'_units.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'screen'_units.png index 51345948d35..d219916b7de 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'screen'_units.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'screen'_units.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'view'_units.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'view'_units.png index 7838adeeb7b..04fd55de3be 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'view'_units.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_positioning__with_tuple_location__with_'view'_units.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png index 1719968494d..19dc0abccbc 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_200px_pixel_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png index 1719968494d..19dc0abccbc 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_adaptive_sizing__and_with_50%_percentage_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__data.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__data.png index d6babbfa8ec..cd23a6fb2dd 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__data.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__data.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__percent.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__percent.png index 9ec61b97d9d..384e1a257db 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__percent.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__percent.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png index f423f30fba2..506faaa1ef4 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_an_integer_bar_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png index 9ec61b97d9d..384e1a257db 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_bar_length_units__screen_and_bar_length_0..1_range.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_200px_pixel_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_200px_pixel_length.png index 00109ece157..44e2ece411c 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_200px_pixel_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_200px_pixel_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_50%_percentage_length.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_50%_percentage_length.png index 68e0e7cc702..c44aa049626 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_50%_percentage_length.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_exact_sizing__and_with_50%_percentage_length.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above.png index bd739aa4160..db1f9c6e0e0 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above_and_20px_standoff.png index 57035956b25..1cc2042dd42 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_above_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below.png index 1367a6e6b7e..664859c3b3b 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below_and_20px_standoff.png index f07717f6a03..a386da8adeb 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_below_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_center.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_center.png index 38e401439dd..c2354fad1e7 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_center.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_center.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_end.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_end.png index e4db56214a8..645bd583745 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_end.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_end.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_start.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_start.png index 25144365f67..f1a932f3a18 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_start.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left__with_label_align_start.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left_and_20px_standoff.png index c2425ae0daf..38c0e4e5347 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_left_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_center.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_center.png index dac3f99c532..eebbd766c4d 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_center.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_center.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_end.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_end.png index f5582b55f94..69757a051cc 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_end.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_end.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_start.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_start.png index 93595642ee9..5608bb325f4 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_start.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right__with_label_align_start.png differ diff --git a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right_and_20px_standoff.png b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right_and_20px_standoff.png index c7b2a569264..b620e9cde7e 100644 Binary files a/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right_and_20px_standoff.png and b/bokehjs/test/baselines/linux/ScaleBar_annotation__should_support_vertical_orientation__with_label_right_and_20px_standoff.png differ diff --git a/bokehjs/test/baselines/linux/ScrollBox__should_allow_to_scroll_a_fixed_sized_plot_with_sizing_mode='fixed'.png b/bokehjs/test/baselines/linux/ScrollBox__should_allow_to_scroll_a_fixed_sized_plot_with_sizing_mode='fixed'.png index a7f515a6aaa..431f68d1545 100644 Binary files a/bokehjs/test/baselines/linux/ScrollBox__should_allow_to_scroll_a_fixed_sized_plot_with_sizing_mode='fixed'.png and b/bokehjs/test/baselines/linux/ScrollBox__should_allow_to_scroll_a_fixed_sized_plot_with_sizing_mode='fixed'.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.blf index 817686fe091..94cdd5d93bb 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 300, 200] Canvas bbox=[0, 0, 300, 200] - CartesianFrame bbox=[33, 5, 262, 88] - GlyphRenderer bbox=[45, 9, 238, 80] - Circle bbox=[45, 9, 238, 80] - LinearAxis bbox=[33, 93, 262, 22] - SizeBar bbox=[33, 115, 262, 85] - InternalPlot bbox=[0, 0, 262, 85] - Canvas bbox=[0, 0, 262, 85] - CartesianFrame bbox=[5, 19, 252, 50] - GlyphRenderer bbox=[-226, 1, 868, 86] - Circle bbox=[-226, 1, 868, 86] - LinearAxis bbox=[5, 69, 252, 16] - Title bbox=[5, 0, 252, 19] - LinearAxis bbox=[0, 5, 33, 88] + CartesianFrame bbox=[33, 5, 262, 90] + GlyphRenderer bbox=[45, 9, 238, 82] + Circle bbox=[45, 9, 238, 82] + LinearAxis bbox=[33, 95, 262, 22] + SizeBar bbox=[33, 117, 262, 83] + InternalPlot bbox=[0, 0, 262, 83] + Canvas bbox=[0, 0, 262, 83] + CartesianFrame bbox=[5, 17, 252, 50] + GlyphRenderer bbox=[-226, -1, 868, 86] + Circle bbox=[-226, -1, 868, 86] + LinearAxis bbox=[5, 67, 252, 16] + Title bbox=[5, 0, 252, 17] + LinearAxis bbox=[0, 5, 33, 90] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.png index 874f538245c..ae816d87a76 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_automatic_renderer.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.blf index 803f7c64d02..1046d49db6d 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 300, 200] Canvas bbox=[0, 0, 300, 200] - CartesianFrame bbox=[33, 85, 262, 93] - GlyphRenderer bbox=[45, 89, 238, 85] - Circle bbox=[45, 89, 238, 85] - SizeBar bbox=[33, 0, 210, 85] - InternalPlot bbox=[0, 0, 210, 85] - Canvas bbox=[0, 0, 210, 85] - CartesianFrame bbox=[5, 19, 200, 50] - GlyphRenderer bbox=[-178, 1, 688, 86] - Circle bbox=[-178, 1, 688, 86] - LinearAxis bbox=[5, 69, 200, 16] - Title bbox=[5, 0, 200, 19] + CartesianFrame bbox=[33, 83, 262, 95] + GlyphRenderer bbox=[45, 87, 238, 87] + Circle bbox=[45, 87, 238, 87] + SizeBar bbox=[33, 0, 210, 83] + InternalPlot bbox=[0, 0, 210, 83] + Canvas bbox=[0, 0, 210, 83] + CartesianFrame bbox=[5, 17, 200, 50] + GlyphRenderer bbox=[-178, -1, 688, 86] + Circle bbox=[-178, -1, 688, 86] + LinearAxis bbox=[5, 67, 200, 16] + Title bbox=[5, 0, 200, 17] LinearAxis bbox=[33, 178, 262, 22] - LinearAxis bbox=[0, 85, 33, 93] + LinearAxis bbox=[0, 83, 33, 95] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.png index 0e0b9b7d390..5810069c218 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__above.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.blf index 53eb9e83110..c164aba9767 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 300, 200] Canvas bbox=[0, 0, 300, 200] - CartesianFrame bbox=[33, 5, 262, 88] - GlyphRenderer bbox=[45, 9, 238, 80] - Circle bbox=[45, 9, 238, 80] - LinearAxis bbox=[33, 93, 262, 22] - SizeBar bbox=[33, 115, 210, 85] - InternalPlot bbox=[0, 0, 210, 85] - Canvas bbox=[0, 0, 210, 85] - CartesianFrame bbox=[5, 19, 200, 50] - GlyphRenderer bbox=[-178, 1, 688, 86] - Circle bbox=[-178, 1, 688, 86] - LinearAxis bbox=[5, 69, 200, 16] - Title bbox=[5, 0, 200, 19] - LinearAxis bbox=[0, 5, 33, 88] + CartesianFrame bbox=[33, 5, 262, 90] + GlyphRenderer bbox=[45, 9, 238, 82] + Circle bbox=[45, 9, 238, 82] + LinearAxis bbox=[33, 95, 262, 22] + SizeBar bbox=[33, 117, 210, 83] + InternalPlot bbox=[0, 0, 210, 83] + Canvas bbox=[0, 0, 210, 83] + CartesianFrame bbox=[5, 17, 200, 50] + GlyphRenderer bbox=[-178, -1, 688, 86] + Circle bbox=[-178, -1, 688, 86] + LinearAxis bbox=[5, 67, 200, 16] + Title bbox=[5, 0, 200, 17] + LinearAxis bbox=[0, 5, 33, 90] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.png index a616b0c6848..0a0559192de 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__below.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.blf index ca27838d624..ddd87929d21 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.blf @@ -5,11 +5,11 @@ Figure bbox=[0, 0, 500, 200] Circle bbox=[254, 13, 230, 157] LinearAxis bbox=[243, 178, 252, 22] LinearAxis bbox=[210, 5, 33, 173] - SizeBar bbox=[0, 5, 210, 85] - InternalPlot bbox=[0, 0, 210, 85] - Canvas bbox=[0, 0, 210, 85] - CartesianFrame bbox=[5, 19, 200, 50] - GlyphRenderer bbox=[-165, 3, 662, 82] - Circle bbox=[-165, 3, 662, 82] - LinearAxis bbox=[5, 69, 200, 16] - Title bbox=[5, 0, 200, 19] + SizeBar bbox=[0, 5, 210, 83] + InternalPlot bbox=[0, 0, 210, 83] + Canvas bbox=[0, 0, 210, 83] + CartesianFrame bbox=[5, 17, 200, 50] + GlyphRenderer bbox=[-165, 1, 662, 82] + Circle bbox=[-165, 1, 662, 82] + LinearAxis bbox=[5, 67, 200, 16] + Title bbox=[5, 0, 200, 17] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.png index 3501b7bfc67..fc23fb5fbbc 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__left.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.blf index ab5301c3654..08264ea45e6 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.blf @@ -5,11 +5,11 @@ Figure bbox=[0, 0, 500, 200] Circle bbox=[45, 13, 233, 157] LinearAxis bbox=[33, 178, 257, 22] LinearAxis bbox=[0, 5, 33, 173] - SizeBar bbox=[290, 5, 210, 85] - InternalPlot bbox=[0, 0, 210, 85] - Canvas bbox=[0, 0, 210, 85] - CartesianFrame bbox=[5, 19, 200, 50] - GlyphRenderer bbox=[-172, 2, 676, 84] - Circle bbox=[-172, 2, 676, 84] - LinearAxis bbox=[5, 69, 200, 16] - Title bbox=[5, 0, 200, 19] + SizeBar bbox=[290, 5, 210, 83] + InternalPlot bbox=[0, 0, 210, 83] + Canvas bbox=[0, 0, 210, 83] + CartesianFrame bbox=[5, 17, 200, 50] + GlyphRenderer bbox=[-172, 0, 676, 84] + Circle bbox=[-172, 0, 676, 84] + LinearAxis bbox=[5, 67, 200, 16] + Title bbox=[5, 0, 200, 17] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.png index e26b9e2d3be..63820b12ecb 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_horizontal_orientation__right.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.blf index 817686fe091..94cdd5d93bb 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 300, 200] Canvas bbox=[0, 0, 300, 200] - CartesianFrame bbox=[33, 5, 262, 88] - GlyphRenderer bbox=[45, 9, 238, 80] - Circle bbox=[45, 9, 238, 80] - LinearAxis bbox=[33, 93, 262, 22] - SizeBar bbox=[33, 115, 262, 85] - InternalPlot bbox=[0, 0, 262, 85] - Canvas bbox=[0, 0, 262, 85] - CartesianFrame bbox=[5, 19, 252, 50] - GlyphRenderer bbox=[-226, 1, 868, 86] - Circle bbox=[-226, 1, 868, 86] - LinearAxis bbox=[5, 69, 252, 16] - Title bbox=[5, 0, 252, 19] - LinearAxis bbox=[0, 5, 33, 88] + CartesianFrame bbox=[33, 5, 262, 90] + GlyphRenderer bbox=[45, 9, 238, 82] + Circle bbox=[45, 9, 238, 82] + LinearAxis bbox=[33, 95, 262, 22] + SizeBar bbox=[33, 117, 262, 83] + InternalPlot bbox=[0, 0, 262, 83] + Canvas bbox=[0, 0, 262, 83] + CartesianFrame bbox=[5, 17, 252, 50] + GlyphRenderer bbox=[-226, -1, 868, 86] + Circle bbox=[-226, -1, 868, 86] + LinearAxis bbox=[5, 67, 252, 16] + Title bbox=[5, 0, 252, 17] + LinearAxis bbox=[0, 5, 33, 90] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.png index 874f538245c..ae816d87a76 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_manual_renderer.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.blf index e9a3d8a221a..a7f89c45dcf 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 300, 400] Canvas bbox=[0, 0, 300, 400] - CartesianFrame bbox=[33, 224, 262, 154] - GlyphRenderer bbox=[45, 231, 238, 140] - Circle bbox=[45, 231, 238, 140] - SizeBar bbox=[33, 0, 69, 224] - InternalPlot bbox=[0, 0, 69, 224] - Canvas bbox=[0, 0, 69, 224] - CartesianFrame bbox=[5, 19, 50, 200] - GlyphRenderer bbox=[-13, -286, 86, 688] - Circle bbox=[-13, -286, 86, 688] - LinearAxis bbox=[55, 19, 14, 200] - Title bbox=[5, 0, 50, 19] + CartesianFrame bbox=[33, 222, 262, 156] + GlyphRenderer bbox=[45, 229, 238, 142] + Circle bbox=[45, 229, 238, 142] + SizeBar bbox=[33, 0, 69, 222] + InternalPlot bbox=[0, 0, 69, 222] + Canvas bbox=[0, 0, 69, 222] + CartesianFrame bbox=[5, 17, 50, 200] + GlyphRenderer bbox=[-13, -288, 86, 688] + Circle bbox=[-13, -288, 86, 688] + LinearAxis bbox=[55, 17, 14, 200] + Title bbox=[5, 0, 50, 17] LinearAxis bbox=[33, 378, 262, 22] - LinearAxis bbox=[0, 224, 33, 154] + LinearAxis bbox=[0, 222, 33, 156] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.png index f8563109835..5493420eace 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__above.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.blf index 2a44c5af9af..8628c83358d 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.blf @@ -1,15 +1,15 @@ Figure bbox=[0, 0, 300, 400] Canvas bbox=[0, 0, 300, 400] - CartesianFrame bbox=[33, 5, 262, 149] - GlyphRenderer bbox=[45, 12, 238, 135] - Circle bbox=[45, 12, 238, 135] - LinearAxis bbox=[33, 154, 262, 22] - SizeBar bbox=[33, 176, 69, 224] - InternalPlot bbox=[0, 0, 69, 224] - Canvas bbox=[0, 0, 69, 224] - CartesianFrame bbox=[5, 19, 50, 200] - GlyphRenderer bbox=[-13, -286, 86, 688] - Circle bbox=[-13, -286, 86, 688] - LinearAxis bbox=[55, 19, 14, 200] - Title bbox=[5, 0, 50, 19] - LinearAxis bbox=[0, 5, 33, 149] + CartesianFrame bbox=[33, 5, 262, 151] + GlyphRenderer bbox=[45, 12, 238, 137] + Circle bbox=[45, 12, 238, 137] + LinearAxis bbox=[33, 156, 262, 22] + SizeBar bbox=[33, 178, 69, 222] + InternalPlot bbox=[0, 0, 69, 222] + Canvas bbox=[0, 0, 69, 222] + CartesianFrame bbox=[5, 17, 50, 200] + GlyphRenderer bbox=[-13, -288, 86, 688] + Circle bbox=[-13, -288, 86, 688] + LinearAxis bbox=[55, 17, 14, 200] + Title bbox=[5, 0, 50, 17] + LinearAxis bbox=[0, 5, 33, 151] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.png index 557b2a8d6da..da8b35487ef 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__below.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.blf index b480ab10ef3..f3a072e634d 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.blf @@ -5,11 +5,11 @@ Figure bbox=[0, 0, 300, 200] Circle bbox=[111, 13, 175, 157] LinearAxis bbox=[102, 178, 193, 22] LinearAxis bbox=[69, 5, 33, 173] - SizeBar bbox=[0, 5, 69, 224] - InternalPlot bbox=[0, 0, 69, 224] - Canvas bbox=[0, 0, 69, 224] - CartesianFrame bbox=[5, 19, 50, 200] - GlyphRenderer bbox=[-2, -196, 64, 508] - Circle bbox=[-2, -196, 64, 508] - LinearAxis bbox=[55, 19, 14, 200] - Title bbox=[5, 0, 50, 19] + SizeBar bbox=[0, 5, 69, 222] + InternalPlot bbox=[0, 0, 69, 222] + Canvas bbox=[0, 0, 69, 222] + CartesianFrame bbox=[5, 17, 50, 200] + GlyphRenderer bbox=[-2, -198, 64, 508] + Circle bbox=[-2, -198, 64, 508] + LinearAxis bbox=[55, 17, 14, 200] + Title bbox=[5, 0, 50, 17] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.png index c6b53eb2178..877384e9091 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__left.png differ diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.blf b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.blf index 2bc14b532a4..428bcb943da 100644 --- a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.blf +++ b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.blf @@ -5,11 +5,11 @@ Figure bbox=[0, 0, 300, 200] Circle bbox=[42, 13, 180, 157] LinearAxis bbox=[33, 178, 198, 22] LinearAxis bbox=[0, 5, 33, 173] - SizeBar bbox=[231, 5, 69, 224] - InternalPlot bbox=[0, 0, 69, 224] - Canvas bbox=[0, 0, 69, 224] - CartesianFrame bbox=[5, 19, 50, 200] - GlyphRenderer bbox=[-3, -202, 66, 520] - Circle bbox=[-3, -202, 66, 520] - LinearAxis bbox=[55, 19, 14, 200] - Title bbox=[5, 0, 50, 19] + SizeBar bbox=[231, 5, 69, 222] + InternalPlot bbox=[0, 0, 69, 222] + Canvas bbox=[0, 0, 69, 222] + CartesianFrame bbox=[5, 17, 50, 200] + GlyphRenderer bbox=[-3, -204, 66, 520] + Circle bbox=[-3, -204, 66, 520] + LinearAxis bbox=[55, 17, 14, 200] + Title bbox=[5, 0, 50, 17] diff --git a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.png b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.png index d471950d528..4adde426107 100644 Binary files a/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.png and b/bokehjs/test/baselines/linux/SizeBar_annotation__should_support_vertical_orientation__right.png differ diff --git a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.blf b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.blf index bd4f12a35a2..14a8f23b899 100644 --- a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.blf +++ b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Spline bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Spline bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Spline bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Spline bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.png b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.png index 4ca2c8f3e89..14723530ac4 100644 Binary files a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.png and b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_closed_spline.png differ diff --git a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.blf b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.blf index bd4f12a35a2..14a8f23b899 100644 --- a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.blf +++ b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Spline bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Spline bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Spline bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Spline bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.png b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.png index 74ee3ae0c45..328638ec4cb 100644 Binary files a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.png and b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_a_spline_where_start_==_end.png differ diff --git a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.blf b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.blf index bd4f12a35a2..14a8f23b899 100644 --- a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.blf +++ b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Spline bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Spline bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[26, 27, 169, 151] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Spline bbox=[43, 57, 118, 106] - GlyphRenderer bbox=[43, 57, 118, 106] - Scatter bbox=[43, 57, 118, 106] + CartesianFrame bbox=[26, 25, 169, 153] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Spline bbox=[43, 56, 118, 107] + GlyphRenderer bbox=[43, 56, 118, 107] + Scatter bbox=[43, 56, 118, 107] LinearAxis bbox=[26, 178, 169, 22] - LinearAxis bbox=[0, 27, 26, 151] - Title bbox=[26, 0, 169, 27] + LinearAxis bbox=[0, 25, 26, 153] + Title bbox=[26, 0, 169, 25] diff --git a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.png b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.png index a90a3e2abae..bc4c99f713b 100644 Binary files a/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.png and b/bokehjs/test/baselines/linux/Spline_glyph__should_allow_to_paint_an_open_spline.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_axis_alignment_across_tabs.png b/bokehjs/test/baselines/linux/Tabs__should_allow_axis_alignment_across_tabs.png index 2cf978cb243..89cb4790655 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_axis_alignment_across_tabs.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_axis_alignment_across_tabs.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above.png index cd4d741ce46..c72a6b380d4 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_active_==_1.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_active_==_1.png index 0180a406b51..a9fb8b70c8a 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_active_==_1.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_active_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_disabled=true.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_disabled=true.png index 5cceb9eb2cd..12a31034ebe 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_disabled=true.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_disabled=true.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow.png index 21f4aa835df..8825fc7d13f 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow_and_active_off-screen.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow_and_active_off-screen.png index 761f194e987..bfbb1620ecb 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow_and_active_off-screen.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_overflow_and_active_off-screen.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_second_tab_disabled.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_second_tab_disabled.png index 604e240235d..055e391f9ca 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_second_tab_disabled.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_above_with_second_tab_disabled.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below.png index f75f18cc1aa..721d5cbc5b2 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_active_==_1.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_active_==_1.png index 247e9b3f844..6c7af2b71e6 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_active_==_1.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_active_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_disabled=true.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_disabled=true.png index 825097a1913..333daf0e57e 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_disabled=true.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_disabled=true.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow.png index 7a9a0b6daa3..4a73a3f35f3 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow_and_active_off-screen.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow_and_active_off-screen.png index e565852209c..e3a56fc6a85 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow_and_active_off-screen.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_overflow_and_active_off-screen.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_second_tab_disabled.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_second_tab_disabled.png index fe0461a1c36..6562710cbab 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_second_tab_disabled.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_below_with_second_tab_disabled.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left.png index 91c6f500698..a583e081e68 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_active_==_1.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_active_==_1.png index 6ae9f540ccd..bcac63ddbd4 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_active_==_1.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_active_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_disabled=true.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_disabled=true.png index 2e7edc89256..4a07510f832 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_disabled=true.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_disabled=true.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow.png index 397d8f7dfb9..85b776471dd 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow_and_active_off-screen.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow_and_active_off-screen.png index 7e6a03bb7f6..d2c00229d89 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow_and_active_off-screen.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_overflow_and_active_off-screen.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_second_tab_disabled.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_second_tab_disabled.png index fd8024d144b..30854578d7b 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_second_tab_disabled.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_left_with_second_tab_disabled.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right.png index c07fdf65fdd..5251c06b604 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_active_==_1.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_active_==_1.png index 2632fc9190b..2f31b3ec9c2 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_active_==_1.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_active_==_1.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_disabled=true.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_disabled=true.png index 21b8b765092..05410d2265d 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_disabled=true.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_disabled=true.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow.png index e50060f0d6f..c45be31dbc7 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow_and_active_off-screen.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow_and_active_off-screen.png index e649be50e0b..1efe50ebae5 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow_and_active_off-screen.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_overflow_and_active_off-screen.png differ diff --git a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_second_tab_disabled.png b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_second_tab_disabled.png index ec03fb1225e..7c349ef2397 100644 Binary files a/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_second_tab_disabled.png and b/bokehjs/test/baselines/linux/Tabs__should_allow_tabs_header_location_right_with_second_tab_disabled.png differ diff --git a/bokehjs/test/baselines/linux/Text_glyph__should_allow_to_paint_text_with_embedded_scripts.png b/bokehjs/test/baselines/linux/Text_glyph__should_allow_to_paint_text_with_embedded_scripts.png index eaaff90f330..618e6d6bf20 100644 Binary files a/bokehjs/test/baselines/linux/Text_glyph__should_allow_to_paint_text_with_embedded_scripts.png and b/bokehjs/test/baselines/linux/Text_glyph__should_allow_to_paint_text_with_embedded_scripts.png differ diff --git a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_-30_degree_angle.png b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_-30_degree_angle.png index c325cac2357..9be77e71240 100644 Binary files a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_-30_degree_angle.png and b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_-30_degree_angle.png differ diff --git a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_0_degree_angle.png b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_0_degree_angle.png index 974969dbd56..85ff0b5c1c2 100644 Binary files a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_0_degree_angle.png and b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_0_degree_angle.png differ diff --git a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_30_degree_angle.png b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_30_degree_angle.png index e936c2842ce..dcd9d224959 100644 Binary files a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_30_degree_angle.png and b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_30_degree_angle.png differ diff --git a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_60_degree_angle.png b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_60_degree_angle.png index c3784cbf8cf..946b8c1b656 100644 Binary files a/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_60_degree_angle.png and b/bokehjs/test/baselines/linux/Text_glyph__should_support_multi-line_rendering_with_different_alignments__at_60_degree_angle.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.png index d63ae7d586a..384c7995f2f 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.png index 8c5c31a2316..5a4f08304a0 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.blf index 990394c9944..5ea53dd4330 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.png index bc6ea7bed0d..41177f4d87b 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_border_line_and_background_hatch_and_padding_and_border_radius.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.png index 8c5c31a2316..5a4f08304a0 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_offset=20_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.blf index 990394c9944..5ea53dd4330 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.png index 2f46f8c4e13..a51601a4252 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=center_and_standoff=20_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.png index 4e7b9d8656f..0660d960d34 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.png index a7ad4bc09d3..08b60366963 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.blf index 990394c9944..5ea53dd4330 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.png index 02acabd4eb6..7e9d92981fd 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_border_line_and_background_hatch_and_padding_and_border_radius.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.png index a600d5d12d2..4a41c4c665d 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_offset=20_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.blf index 990394c9944..5ea53dd4330 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.png index 5cf0b00244f..2014787bea2 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=left_and_standoff=20_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.png index 463dc19bedc..ca62c9d19b4 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.png index 9c04bc2aa13..ff06dce06a2 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.blf index 990394c9944..5ea53dd4330 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.png index a89a7e3cb56..b57e3881ff5 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_border_line_and_background_hatch_and_padding_and_border_radius.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.blf index a2ee30f7c83..af3762ca04c 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[119, 146, 162, 135] - Title bbox=[119, 119, 162, 27] - Title bbox=[119, 77, 162, 42] - Title bbox=[119, 27, 162, 50] - Title bbox=[119, 281, 162, 27] - Title bbox=[119, 308, 162, 42] - Title bbox=[119, 350, 162, 50] - Title bbox=[92, 146, 27, 135] - Title bbox=[50, 146, 42, 135] - Title bbox=[0, 146, 50, 135] - Title bbox=[281, 146, 27, 135] - Title bbox=[308, 146, 42, 135] - Title bbox=[350, 146, 50, 135] - Title bbox=[119, 0, 162, 27] + CartesianFrame bbox=[113, 138, 174, 149] + Title bbox=[113, 113, 174, 25] + Title bbox=[113, 73, 174, 40] + Title bbox=[113, 25, 174, 48] + Title bbox=[113, 287, 174, 25] + Title bbox=[113, 312, 174, 40] + Title bbox=[113, 352, 174, 48] + Title bbox=[88, 138, 25, 149] + Title bbox=[48, 138, 40, 149] + Title bbox=[0, 138, 48, 149] + Title bbox=[287, 138, 25, 149] + Title bbox=[312, 138, 40, 149] + Title bbox=[352, 138, 48, 149] + Title bbox=[113, 0, 174, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.png index fea1209b8d3..97bc4cb1a51 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_offset=20_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.blf b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.blf index 990394c9944..5ea53dd4330 100644 --- a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.blf +++ b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.blf @@ -1,33 +1,33 @@ Row bbox=[0, 0, 800, 400] Figure bbox=[0, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] Figure bbox=[400, 0, 400, 400] Canvas bbox=[0, 0, 400, 400] - CartesianFrame bbox=[149, 176, 102, 75] - Title bbox=[149, 139, 102, 37] - Title bbox=[149, 87, 102, 52] - Title bbox=[149, 27, 102, 60] - Title bbox=[149, 251, 102, 37] - Title bbox=[149, 288, 102, 52] - Title bbox=[149, 340, 102, 60] - Title bbox=[112, 176, 37, 75] - Title bbox=[60, 176, 52, 75] - Title bbox=[0, 176, 60, 75] - Title bbox=[251, 176, 37, 75] - Title bbox=[288, 176, 52, 75] - Title bbox=[340, 176, 60, 75] - Title bbox=[149, 0, 102, 27] + CartesianFrame bbox=[143, 168, 114, 89] + Title bbox=[143, 133, 114, 35] + Title bbox=[143, 83, 114, 50] + Title bbox=[143, 25, 114, 58] + Title bbox=[143, 257, 114, 35] + Title bbox=[143, 292, 114, 50] + Title bbox=[143, 342, 114, 58] + Title bbox=[108, 168, 35, 89] + Title bbox=[58, 168, 50, 89] + Title bbox=[0, 168, 58, 89] + Title bbox=[257, 168, 35, 89] + Title bbox=[292, 168, 50, 89] + Title bbox=[342, 168, 58, 89] + Title bbox=[143, 0, 114, 25] diff --git a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.png b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.png index 20662cb91d7..ad01c6af916 100644 Binary files a/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.png and b/bokehjs/test/baselines/linux/Title_annotation__should_support_positioning__with_align=right_and_standoff=20_and_border_line_and_background_fill.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_BoxSelectTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_BoxSelectTool's_setup_menu.png index 7a5ed635a95..44d995f4e14 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_BoxSelectTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_BoxSelectTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_BoxZoomTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_BoxZoomTool's_setup_menu.png index 3d82389b01e..d8b3c230876 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_BoxZoomTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_BoxZoomTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_LassoSelectTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_LassoSelectTool's_setup_menu.png index b5bab332121..cce09cdac70 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_LassoSelectTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_LassoSelectTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_PanTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_PanTool's_setup_menu.png index f209cf1f17e..3a2f3af6180 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_PanTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_PanTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_PolySelectTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_PolySelectTool's_setup_menu.png index 6a2db3a02fe..8136b8137e9 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_PolySelectTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_PolySelectTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_SaveTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_SaveTool's_setup_menu.png index cd284b54eab..68aba27c98d 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_SaveTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_SaveTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/Tools__should_support_TapTool's_setup_menu.png b/bokehjs/test/baselines/linux/Tools__should_support_TapTool's_setup_menu.png index 961eda34484..12bc389640f 100644 Binary files a/bokehjs/test/baselines/linux/Tools__should_support_TapTool's_setup_menu.png and b/bokehjs/test/baselines/linux/Tools__should_support_TapTool's_setup_menu.png differ diff --git a/bokehjs/test/baselines/linux/UI_elements__should_implement_Dialog__which_should_support_basic_features.png b/bokehjs/test/baselines/linux/UI_elements__should_implement_Dialog__which_should_support_basic_features.png index e2855ca2743..c101d683179 100644 Binary files a/bokehjs/test/baselines/linux/UI_elements__should_implement_Dialog__which_should_support_basic_features.png and b/bokehjs/test/baselines/linux/UI_elements__should_implement_Dialog__which_should_support_basic_features.png differ diff --git a/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'below'.png b/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'below'.png index c74549ebe84..da1c6ae3afb 100644 Binary files a/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'below'.png and b/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'below'.png differ diff --git a/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'left'.png b/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'left'.png index 6e367c594c7..63b854d7ccf 100644 Binary files a/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'left'.png and b/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'left'.png differ diff --git a/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'right'.png b/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'right'.png index 1acd7810d1b..b2db4550b4f 100644 Binary files a/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'right'.png and b/bokehjs/test/baselines/linux/UI_elements__should_implement_Drawer_component__supporting_location_=_'right'.png differ diff --git a/bokehjs/test/baselines/linux/UI_elements__should_implement_Menu__which_should_support_basic_features.png b/bokehjs/test/baselines/linux/UI_elements__should_implement_Menu__which_should_support_basic_features.png index 72168a18d4e..7bc269f0ade 100644 Binary files a/bokehjs/test/baselines/linux/UI_elements__should_implement_Menu__which_should_support_basic_features.png and b/bokehjs/test/baselines/linux/UI_elements__should_implement_Menu__which_should_support_basic_features.png differ diff --git a/bokehjs/test/baselines/linux/VBox__should_allow_3_plots_of_200x200_size.png b/bokehjs/test/baselines/linux/VBox__should_allow_3_plots_of_200x200_size.png index bc2fd1f9496..ba15cec35a3 100644 Binary files a/bokehjs/test/baselines/linux/VBox__should_allow_3_plots_of_200x200_size.png and b/bokehjs/test/baselines/linux/VBox__should_allow_3_plots_of_200x200_size.png differ diff --git a/bokehjs/test/baselines/linux/WheelZoomTool__should_notify_when_modifiers_aren't_satisfied.png b/bokehjs/test/baselines/linux/WheelZoomTool__should_notify_when_modifiers_aren't_satisfied.png index c0ee8b4dd30..6d4ff4593e9 100644 Binary files a/bokehjs/test/baselines/linux/WheelZoomTool__should_notify_when_modifiers_aren't_satisfied.png and b/bokehjs/test/baselines/linux/WheelZoomTool__should_notify_when_modifiers_aren't_satisfied.png differ diff --git a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.blf b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.blf index e6a2fb3ce6f..e7908d675eb 100644 --- a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.blf +++ b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] + CartesianFrame bbox=[21, 25, 274, 253] GlyphRenderer bbox=[48, 208, 220, 56] Scatter bbox=[48, 208, 220, 56] - GlyphRenderer bbox=[48, 125, 220, 55] - Scatter bbox=[48, 125, 220, 55] - GlyphRenderer bbox=[48, 41, 220, 56] - Scatter bbox=[48, 41, 220, 56] + GlyphRenderer bbox=[48, 123, 220, 57] + Scatter bbox=[48, 123, 220, 57] + GlyphRenderer bbox=[48, 39, 220, 56] + Scatter bbox=[48, 39, 220, 56] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] - GlyphRenderer bbox=[102, 181, 112, 28] - Scatter bbox=[102, 181, 112, 28] - GlyphRenderer bbox=[102, 138, 112, 29] - Scatter bbox=[102, 138, 112, 29] - GlyphRenderer bbox=[102, 95, 112, 29] - Scatter bbox=[102, 95, 112, 29] + CartesianFrame bbox=[21, 25, 274, 253] + GlyphRenderer bbox=[102, 180, 112, 29] + Scatter bbox=[102, 180, 112, 29] + GlyphRenderer bbox=[102, 137, 112, 29] + Scatter bbox=[102, 137, 112, 29] + GlyphRenderer bbox=[102, 94, 112, 28] + Scatter bbox=[102, 94, 112, 28] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] - GlyphRenderer bbox=[102, 222, 112, 28] - Scatter bbox=[102, 222, 112, 28] - GlyphRenderer bbox=[102, 138, 112, 29] - Scatter bbox=[102, 138, 112, 29] - GlyphRenderer bbox=[102, 55, 112, 28] - Scatter bbox=[102, 55, 112, 28] + CartesianFrame bbox=[21, 25, 274, 253] + GlyphRenderer bbox=[102, 221, 112, 29] + Scatter bbox=[102, 221, 112, 29] + GlyphRenderer bbox=[102, 137, 112, 29] + Scatter bbox=[102, 137, 112, 29] + GlyphRenderer bbox=[102, 53, 112, 29] + Scatter bbox=[102, 53, 112, 29] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] diff --git a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.png b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.png index 1f56c67c620..a4bd99a436f 100644 Binary files a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.png and b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates.png differ diff --git a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior='only_hit'.png b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior='only_hit'.png index f949c132032..82e710b8a0f 100644 Binary files a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior='only_hit'.png and b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior='only_hit'.png differ diff --git a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByModels().png b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByModels().png index b78ee5876b3..229fc147e13 100644 Binary files a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByModels().png and b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByModels().png differ diff --git a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByName().png b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByName().png index b78ee5876b3..229fc147e13 100644 Binary files a/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByName().png and b/bokehjs/test/baselines/linux/WheelZoomTool__should_support_zooming_sub-coordinates__with_hit_test=true__with_hit_test_mode=hline__and_hit_test_behavior=GroupByName().png differ diff --git a/bokehjs/test/baselines/linux/Whisker_annotation__should_support_basic_positioning.png b/bokehjs/test/baselines/linux/Whisker_annotation__should_support_basic_positioning.png index f03e2ab3aaf..795282c7bf5 100644 Binary files a/bokehjs/test/baselines/linux/Whisker_annotation__should_support_basic_positioning.png and b/bokehjs/test/baselines/linux/Whisker_annotation__should_support_basic_positioning.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput.png b/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput.png index 76f38b05913..2a2c6dac630 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput_with_min_characters==0_and_completions_showed_on_focusin.png b/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput_with_min_characters==0_and_completions_showed_on_focusin.png index fcc5a9eb2ae..60b67310a1c 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput_with_min_characters==0_and_completions_showed_on_focusin.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_AutocompleteInput_with_min_characters==0_and_completions_showed_on_focusin.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Button.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Button.png index 6c2cb84cc49..e28140fbb76 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Button.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Button.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_CategoricalSlider.png b/bokehjs/test/baselines/linux/Widgets__should_allow_CategoricalSlider.png index 393bb74fa41..5463c2e37cc 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_CategoricalSlider.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_CategoricalSlider.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup.png b/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup.png index 51352efcf9f..dff2e86585f 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup_in_vertical_orientation.png b/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup_in_vertical_orientation.png index 1117c897e01..86336957bce 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup_in_vertical_orientation.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxButtonGroup_in_vertical_orientation.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxGroup.png b/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxGroup.png index 5179665d5d7..e7fcc858992 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxGroup.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_CheckboxGroup.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=false.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=false.png index 08ffbb4e4f3..2736e83e2c5 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=false.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=false.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=true.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=true.png index d9edbb5b334..9e2cb8f788a 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=true.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Checkbox_with_active=true.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DataCube.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DataCube.png index 77726fc3d81..c65c864a305 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DataCube.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DataCube.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_fit_columns_mode.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_fit_columns_mode.png index 42f7a2512ce..30d28d21410 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_fit_columns_mode.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_fit_columns_mode.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_force_fit_mode.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_force_fit_mode.png index 60b5d49804f..2f0fb1d9cfe 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_force_fit_mode.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_force_fit_mode.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_none_mode.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_none_mode.png index 113beeecdff..cd8b96ad004 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_none_mode.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_in_none_mode.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_to_toggle_column_visibility.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_to_toggle_column_visibility.png index 113beeecdff..cd8b96ad004 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_to_toggle_column_visibility.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DataTable_to_toggle_column_visibility.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DatePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DatePicker.png index dd40f3ec860..c3b1976e72e 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DatePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DatePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangePicker.png index 167239f6e8e..307cb8b8b8e 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangeSlider.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangeSlider.png index 5860056090e..20cc46f8f2b 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangeSlider.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DateRangeSlider.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DateSlider.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DateSlider.png index 538c43b653a..103e4754676 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DateSlider.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DateSlider.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimePicker.png index 18d8bd9b8bd..3c858f86bbb 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimeRangePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimeRangePicker.png index e0cde763d0e..d0d77677aa3 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimeRangePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_DatetimeRangePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Div.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Div.png index f14737ccc79..6cfba7035ca 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Div.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Div.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Div_with_float_children.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Div_with_float_children.png index 87cf5533a35..61ad562d725 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Div_with_float_children.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Div_with_float_children.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown.png index c9bd963f051..976a9210d21 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown_with_menu_open.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown_with_menu_open.png index cae645d1d15..d3827745260 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown_with_menu_open.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Dropdown_with_menu_open.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_FileInput.png b/bokehjs/test/baselines/linux/Widgets__should_allow_FileInput.png index 052ef46bfc1..622273efa69 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_FileInput.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_FileInput.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_MultiChoice.png b/bokehjs/test/baselines/linux/Widgets__should_allow_MultiChoice.png index a2c21f7aaba..f848f422d72 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_MultiChoice.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_MultiChoice.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_MultiSelect.png b/bokehjs/test/baselines/linux/Widgets__should_allow_MultiSelect.png index 8060a616d39..e8a323a4ce3 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_MultiSelect.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_MultiSelect.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatePicker.png index f63411d7ce4..c56da17e2c2 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatetimePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatetimePicker.png index 081b8f30197..8e07351a140 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatetimePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_MultipleDatetimePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Paragraph.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Paragraph.png index 2327e1f49b8..fcf6e1efc7f 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Paragraph.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Paragraph.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput.png b/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput.png index 2dff5ca2708..fe88a5c6c89 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput_with_password_visible.png b/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput_with_password_visible.png index 1e10259d6e0..52c38b6ac7f 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput_with_password_visible.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_PasswordInput_with_password_visible.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_PreText.png b/bokehjs/test/baselines/linux/Widgets__should_allow_PreText.png index 36eeb53e0e2..db6bead51a4 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_PreText.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_PreText.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup.png b/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup.png index 13f028c35e8..d06ec7b509e 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup_in_vertical_orientation.png b/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup_in_vertical_orientation.png index a31e0574243..ca4b8037032 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup_in_vertical_orientation.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_RadioButtonGroup_in_vertical_orientation.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_RadioGroup.png b/bokehjs/test/baselines/linux/Widgets__should_allow_RadioGroup.png index 1efa0ed9144..98191e75746 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_RadioGroup.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_RadioGroup.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_RangeSlider.png b/bokehjs/test/baselines/linux/Widgets__should_allow_RangeSlider.png index f0dff51d6d2..d46fb7701f6 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_RangeSlider.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_RangeSlider.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Select.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Select.png index e9d83f33411..c4418286ffc 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Select.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Select.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Select_with_non-string_options.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Select_with_non-string_options.png index e9d83f33411..c4418286ffc 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Select_with_non-string_options.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Select_with_non-string_options.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Slider.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Slider.png index 747e8777e5d..febf8c84c03 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Slider.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Slider.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Slider_with_math_text_string_on_title.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Slider_with_math_text_string_on_title.png index 57b0c67ff93..f1670b19267 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Slider_with_math_text_string_on_title.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Slider_with_math_text_string_on_title.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_label.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_label.png index f3570dba74e..db022baab0f 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_label.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_label.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_on_icon.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_on_icon.png index db48c09d887..bf8c1790e5e 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_on_icon.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Switch_with_active=true_and_on_icon.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Divs_with_mathstrings.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Divs_with_mathstrings.png index 3d8199dd00a..60c786457d4 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Divs_with_mathstrings.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Divs_with_mathstrings.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Paragraph_with_mathstrings.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Paragraph_with_mathstrings.png index 3d8199dd00a..60c786457d4 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Paragraph_with_mathstrings.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TeX_on_Paragraph_with_mathstrings.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput.png index 5e78ec4e4fd..7e8449622eb 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput_with_resizable=true.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput_with_resizable=true.png index f720bc9086e..1c97b50984f 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput_with_resizable=true.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextAreaInput_with_resizable=true.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput.png index 76f38b05913..2a2c6dac630 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix.png index bfe48e11100..324fc112855 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix_and_suffix.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix_and_suffix.png index 831068b9431..433e7cfd2b8 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix_and_suffix.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_prefix_and_suffix.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_suffix.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_suffix.png index 46843313ea7..75ccd555ad6 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_suffix.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_suffix.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_title,_prefix_and_suffix.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_title,_prefix_and_suffix.png index 9045a4ef730..b42f6936377 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_title,_prefix_and_suffix.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TextInput_with_title,_prefix_and_suffix.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker.png index 3a5d8389dcf..3bb1e3fb25e 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds.png index 497ad204d7a..f5d979d9043 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds_and_12h_clock.png b/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds_and_12h_clock.png index 836252059bb..ab6361fccbd 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds_and_12h_clock.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_TimePicker_with_seconds_and_12h_clock.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_Toggle.png b/bokehjs/test/baselines/linux/Widgets__should_allow_Toggle.png index 077417d8ec2..87b3782d11a 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_Toggle.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_Toggle.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown.png b/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown.png index b99a0aa2dd4..66fbd81593d 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown_with_menu_open.png b/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown_with_menu_open.png index 5e345961eb1..accdcb2bcbe 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown_with_menu_open.png and b/bokehjs/test/baselines/linux/Widgets__should_allow_split_Dropdown_with_menu_open.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_not_allow_TeX_on_PreText_with_mathstrings.png b/bokehjs/test/baselines/linux/Widgets__should_not_allow_TeX_on_PreText_with_mathstrings.png index 9e75f4dd0bd..c3cd0062f00 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_not_allow_TeX_on_PreText_with_mathstrings.png and b/bokehjs/test/baselines/linux/Widgets__should_not_allow_TeX_on_PreText_with_mathstrings.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_disable_math=true.png b/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_disable_math=true.png index 8ced623c449..f3894dbc2a2 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_disable_math=true.png and b/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_disable_math=true.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_render_as_text=true.png b/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_render_as_text=true.png index 8ced623c449..f3894dbc2a2 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_render_as_text=true.png and b/bokehjs/test/baselines/linux/Widgets__should_not_process_TeX_on_Divs_with_mathstrings_and_render_as_text=true.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_default_settings.png b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_default_settings.png index 4ab0a33eb5d..a106edce0b3 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_default_settings.png and b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_default_settings.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_disabled=true.png b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_disabled=true.png index 8beb83d71f1..eb66958872b 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_disabled=true.png and b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_disabled=true.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_ncols=3.png b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_ncols=3.png index 741bdac6cee..6bd8cc9d6d0 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_ncols=3.png and b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_ncols=3.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_height=50px.png b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_height=50px.png index 3df4445627b..dff2f04a073 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_height=50px.png and b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_height=50px.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_width=20px.png b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_width=20px.png index d66037cb4f3..79d6fa1ab18 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_width=20px.png and b/bokehjs/test/baselines/linux/Widgets__should_support_PaletteSelect__with_swatch_width=20px.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_horizontal_orientation.png b/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_horizontal_orientation.png index 9ad74b2d08a..b41d6b61121 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_horizontal_orientation.png and b/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_horizontal_orientation.png differ diff --git a/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_vertical_orientation.png b/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_vertical_orientation.png index 4f7782e4587..e2dfe9c1111 100644 Binary files a/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_vertical_orientation.png and b/bokehjs/test/baselines/linux/Widgets__should_support_Progress_indicator_widget__in_determinate_mode__and_vertical_orientation.png differ diff --git a/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.blf b/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.blf index be203ba60e2..071197cc9fd 100644 --- a/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.blf +++ b/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] + CartesianFrame bbox=[21, 25, 274, 253] GlyphRenderer bbox=[48, 208, 220, 56] Scatter bbox=[48, 208, 220, 56] - GlyphRenderer bbox=[48, 125, 220, 55] - Scatter bbox=[48, 125, 220, 55] - GlyphRenderer bbox=[48, 41, 220, 56] - Scatter bbox=[48, 41, 220, 56] + GlyphRenderer bbox=[48, 123, 220, 57] + Scatter bbox=[48, 123, 220, 57] + GlyphRenderer bbox=[48, 39, 220, 56] + Scatter bbox=[48, 39, 220, 56] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] - GlyphRenderer bbox=[-28, 247, 372, 94] - Scatter bbox=[-28, 247, 372, 94] - GlyphRenderer bbox=[-28, 105, 372, 95] - Scatter bbox=[-28, 105, 372, 95] - GlyphRenderer bbox=[-28, -36, 372, 94] - Scatter bbox=[-28, -36, 372, 94] + CartesianFrame bbox=[21, 25, 274, 253] + GlyphRenderer bbox=[-28, 247, 372, 95] + Scatter bbox=[-28, 247, 372, 95] + GlyphRenderer bbox=[-28, 104, 372, 95] + Scatter bbox=[-28, 104, 372, 95] + GlyphRenderer bbox=[-28, -39, 372, 95] + Scatter bbox=[-28, -39, 372, 95] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] - GlyphRenderer bbox=[-28, 189, 372, 94] - Scatter bbox=[-28, 189, 372, 94] - GlyphRenderer bbox=[-28, 105, 372, 95] - Scatter bbox=[-28, 105, 372, 95] - GlyphRenderer bbox=[-28, 22, 372, 94] - Scatter bbox=[-28, 22, 372, 94] + CartesianFrame bbox=[21, 25, 274, 253] + GlyphRenderer bbox=[-28, 188, 372, 95] + Scatter bbox=[-28, 188, 372, 95] + GlyphRenderer bbox=[-28, 104, 372, 95] + Scatter bbox=[-28, 104, 372, 95] + GlyphRenderer bbox=[-28, 20, 372, 95] + Scatter bbox=[-28, 20, 372, 95] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] diff --git a/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.png b/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.png index 95947c6ca59..f72bacc8c4d 100644 Binary files a/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.png and b/bokehjs/test/baselines/linux/ZoomInTool__should_support_zooming_sub-coordinates.png differ diff --git a/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.blf b/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.blf index 2cbee92b7c5..0a218b2257e 100644 --- a/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.blf +++ b/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.blf @@ -1,37 +1,37 @@ Row bbox=[0, 0, 900, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] + CartesianFrame bbox=[21, 25, 274, 253] GlyphRenderer bbox=[48, 208, 220, 56] Scatter bbox=[48, 208, 220, 56] - GlyphRenderer bbox=[48, 125, 220, 55] - Scatter bbox=[48, 125, 220, 55] - GlyphRenderer bbox=[48, 41, 220, 56] - Scatter bbox=[48, 41, 220, 56] + GlyphRenderer bbox=[48, 123, 220, 57] + Scatter bbox=[48, 123, 220, 57] + GlyphRenderer bbox=[48, 39, 220, 56] + Scatter bbox=[48, 39, 220, 56] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] + CartesianFrame bbox=[21, 25, 274, 253] GlyphRenderer bbox=[93, 185, 130, 33] Scatter bbox=[93, 185, 130, 33] - GlyphRenderer bbox=[93, 136, 130, 33] - Scatter bbox=[93, 136, 130, 33] - GlyphRenderer bbox=[93, 87, 130, 33] - Scatter bbox=[93, 87, 130, 33] + GlyphRenderer bbox=[93, 135, 130, 33] + Scatter bbox=[93, 135, 130, 33] + GlyphRenderer bbox=[93, 85, 130, 33] + Scatter bbox=[93, 85, 130, 33] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] Figure bbox=[600, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[21, 27, 274, 251] - GlyphRenderer bbox=[93, 220, 130, 33] - Scatter bbox=[93, 220, 130, 33] - GlyphRenderer bbox=[93, 136, 130, 33] - Scatter bbox=[93, 136, 130, 33] - GlyphRenderer bbox=[93, 52, 130, 33] - Scatter bbox=[93, 52, 130, 33] + CartesianFrame bbox=[21, 25, 274, 253] + GlyphRenderer bbox=[93, 219, 130, 33] + Scatter bbox=[93, 219, 130, 33] + GlyphRenderer bbox=[93, 135, 130, 33] + Scatter bbox=[93, 135, 130, 33] + GlyphRenderer bbox=[93, 51, 130, 33] + Scatter bbox=[93, 51, 130, 33] LinearAxis bbox=[21, 278, 274, 22] - CategoricalAxis bbox=[0, 27, 21, 251] - Title bbox=[21, 0, 274, 27] + CategoricalAxis bbox=[0, 25, 21, 253] + Title bbox=[21, 0, 274, 25] diff --git a/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.png b/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.png index 135cca580f8..bb9e04c1c27 100644 Binary files a/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.png and b/bokehjs/test/baselines/linux/ZoomOutTool__should_support_zooming_sub-coordinates.png differ diff --git a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=above.png b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=above.png index 5afdfeab32f..3426422b6a4 100644 Binary files a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=above.png and b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=above.png differ diff --git a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=below.png b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=below.png index 54fbc3a0b1e..344ca6c24a0 100644 Binary files a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=below.png and b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=below.png differ diff --git a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=left.png b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=left.png index ea613ea23a5..1048e5542d2 100644 Binary files a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=left.png and b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=left.png differ diff --git a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=null.png b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=null.png index 8cb30b14316..5f275656b64 100644 Binary files a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=null.png and b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=null.png differ diff --git a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=right.png b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=right.png index 758abf6c7b5..40c912a4144 100644 Binary files a/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=right.png and b/bokehjs/test/baselines/linux/gridplot()__should_align_axes_when_toolbar_location=right.png differ diff --git a/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.blf b/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.blf index e0406b5533d..9cdcc276fe1 100644 --- a/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.blf +++ b/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.blf @@ -1,25 +1,25 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[36, 27, 259, 251] - GlyphRenderer bbox=[48, 104, 235, 163] - Line bbox=[48, 104, 235, 163] - GlyphRenderer bbox=[48, 71, 235, 163] - Line bbox=[48, 71, 235, 163] - GlyphRenderer bbox=[48, 38, 235, 163] - Line bbox=[48, 38, 235, 163] + CartesianFrame bbox=[36, 25, 259, 253] + GlyphRenderer bbox=[48, 102, 235, 165] + Line bbox=[48, 102, 235, 165] + GlyphRenderer bbox=[48, 69, 235, 165] + Line bbox=[48, 69, 235, 165] + GlyphRenderer bbox=[48, 37, 235, 164] + Line bbox=[48, 37, 235, 164] LinearAxis bbox=[36, 278, 259, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 259, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 259, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[36, 27, 259, 251] - GlyphRenderer bbox=[48, 104, 235, 163] - Line bbox=[48, 104, 235, 163] - GlyphRenderer bbox=[48, 71, 235, 163] - Line bbox=[48, 71, 235, 163] - GlyphRenderer bbox=[48, 38, 235, 163] - Line bbox=[48, 38, 235, 163] + CartesianFrame bbox=[36, 25, 259, 253] + GlyphRenderer bbox=[48, 102, 235, 165] + Line bbox=[48, 102, 235, 165] + GlyphRenderer bbox=[48, 69, 235, 165] + Line bbox=[48, 69, 235, 165] + GlyphRenderer bbox=[48, 37, 235, 164] + Line bbox=[48, 37, 235, 164] LinearAxis bbox=[36, 278, 259, 22] - LinearAxis bbox=[0, 27, 36, 251] - Title bbox=[36, 0, 259, 27] + LinearAxis bbox=[0, 25, 36, 253] + Title bbox=[36, 0, 259, 25] diff --git a/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.png b/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.png index f1f63b8e80a..0fcd569d199 100644 Binary files a/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.png and b/bokehjs/test/baselines/linux/webgl__should_render_overlapping_near_parallel_lines.png differ diff --git a/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.blf b/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.blf index 53d7b3c9ddc..0d547cea8ce 100644 --- a/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.blf +++ b/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 600, 300] Figure bbox=[0, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[41, 38, 242, 229] - Line bbox=[41, 38, 242, 229] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[41, 37, 242, 230] + Line bbox=[41, 37, 242, 230] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] Figure bbox=[300, 0, 300, 300] Canvas bbox=[0, 0, 300, 300] - CartesianFrame bbox=[29, 27, 266, 251] - GlyphRenderer bbox=[41, 38, 242, 229] - Line bbox=[41, 38, 242, 229] + CartesianFrame bbox=[29, 25, 266, 253] + GlyphRenderer bbox=[41, 37, 242, 230] + Line bbox=[41, 37, 242, 230] LinearAxis bbox=[29, 278, 266, 22] - LinearAxis bbox=[0, 27, 29, 251] - Title bbox=[29, 0, 266, 27] + LinearAxis bbox=[0, 25, 29, 253] + Title bbox=[29, 0, 266, 25] diff --git a/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.png b/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.png index f2b242602f4..9d86ee5667f 100644 Binary files a/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.png and b/bokehjs/test/baselines/linux/webgl__should_support_nan_in_line.png differ diff --git a/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.blf b/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.blf index add0e591fca..34a099c21cf 100644 --- a/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.blf +++ b/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.blf @@ -1,17 +1,17 @@ Row bbox=[0, 0, 400, 200] Figure bbox=[0, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[-165888, 34, 166000, 137] - Line bbox=[-165888, 34, 166000, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[-165888, 32, 166000, 139] + Line bbox=[-165888, 32, 166000, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] Figure bbox=[200, 0, 200, 200] Canvas bbox=[0, 0, 200, 200] - CartesianFrame bbox=[29, 27, 166, 151] - GlyphRenderer bbox=[-165888, 34, 166000, 137] - Line bbox=[-165888, 34, 166000, 137] + CartesianFrame bbox=[29, 25, 166, 153] + GlyphRenderer bbox=[-165888, 32, 166000, 139] + Line bbox=[-165888, 32, 166000, 139] LinearAxis bbox=[29, 178, 166, 22] - LinearAxis bbox=[0, 27, 29, 151] - Title bbox=[29, 0, 166, 27] + LinearAxis bbox=[0, 25, 29, 153] + Title bbox=[29, 0, 166, 25] diff --git a/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.png b/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.png index 9e9bce07876..0ad66c269de 100644 Binary files a/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.png and b/bokehjs/test/baselines/linux/webgl__should_support_zoom_without_NaN_problems.png differ diff --git a/bokehjs/test/devtools/devtools.ts b/bokehjs/test/devtools/devtools.ts index da8b6dc4c5a..301f7cfecd5 100644 --- a/bokehjs/test/devtools/devtools.ts +++ b/bokehjs/test/devtools/devtools.ts @@ -837,7 +837,7 @@ async function get_version(): Promise<{browser: string, protocol: string}> { } type Version = [number, number, number, number] -const supported_chromium_version: Version = [118, 0, 5993, 88] +const supported_chromium_version: Version = [141, 0, 7390, 54] function get_version_tuple(version: string): Version | null { const match = version.match(/(\d+)\.(\d+)\.(\d+)\.(\d+)/) diff --git a/bokehjs/test/integration/regressions.ts b/bokehjs/test/integration/regressions.ts index 6658950dcac..3e27f115dc8 100644 --- a/bokehjs/test/integration/regressions.ts +++ b/bokehjs/test/integration/regressions.ts @@ -53,7 +53,7 @@ import type {LineDash, Location, OutputBackend} from "@bokehjs/core/enums" import {Anchor, MarkerType} from "@bokehjs/core/enums" import {subsets, tail} from "@bokehjs/core/util/iterator" import {isArray, isPlainObject} from "@bokehjs/core/util/types" -import {range, linspace, cumsum, reversed} from "@bokehjs/core/util/array" +import {range, linspace, cumsum, reversed, subselect} from "@bokehjs/core/util/array" import {ndarray} from "@bokehjs/core/util/ndarray" import {Random} from "@bokehjs/core/util/random" import {Matrix} from "@bokehjs/core/util/matrix" @@ -4699,4 +4699,58 @@ describe("Bug", () => { ctx.drawImage(image, 0, 0, 200, 200) }) }) + + describe("in issue #14549", () => { + it("doesn't prevent hover action upon bbox change", async () => { + const n = 1000 + const x = linspace(0, 20, n) + const y = x + + const div = new Div({text: "some text"}) + const source = new ColumnDataSource({data: {x, y}}) + + function hover_cb(_model: HoverTool, options: {index: Selection}) { + const {index} = options + const idx = index.line_indices + const _y_data = source.get_column("y")! + const _y = subselect(_y_data, idx)[0] + + const y = new Intl.NumberFormat("en-IN", { + minimumFractionDigits: 1, + maximumFractionDigits: 2, + }).format(_y) + + div.text = `${y}` + } + + const hover = new HoverTool({ + mode: "vline", + tooltips: [ + ["i", "$index"], + ["sx", "$sx" ], + ["sy", "$sy" ], + ], + callback: hover_cb, + }) + const wheel_pan = new WheelPanTool({dimension: "width"}) + + const p = fig([200, 200], { + title: "hover", + tools: [hover, wheel_pan], + active_scroll: wheel_pan, + sizing_mode: "stretch_both", + }) + p.line({x: {field: "x"}, y: {field: "y"}, color: "red", source}) + + const {view} = await display(row([div, p], {sizing_mode: "stretch_both"})) + + const pv0 = view.owner.get_one(p) + + const actions0 = new PlotActions(pv0) + await actions0.hover(xy(0, 0)) + await actions0.scroll(xy(0, 0), 250) + + await view.ready + }) + }) }) diff --git a/conda/environment-test-3.13.yml b/conda/environment-test-3.13.yml index b1b21a5c538..a4b7dabe770 100644 --- a/conda/environment-test-3.13.yml +++ b/conda/environment-test-3.13.yml @@ -1,6 +1,5 @@ name: bk-test channels: - - conda-forge/label/python_rc - conda-forge dependencies: - python=3.13 diff --git a/conda/environment-test-3.14.yml b/conda/environment-test-3.14.yml index 9b9ea7ff36e..1b49fef567a 100644 --- a/conda/environment-test-3.14.yml +++ b/conda/environment-test-3.14.yml @@ -1,6 +1,5 @@ name: bk-test channels: - - conda-forge/label/python_rc - conda-forge dependencies: - python=3.14 diff --git a/src/bokeh/palettes.py b/src/bokeh/palettes.py index 2d899faaeb5..472e41b3b67 100644 --- a/src/bokeh/palettes.py +++ b/src/bokeh/palettes.py @@ -1526,7 +1526,8 @@ def linear_palette(palette: Palette, n: int) -> Palette: """ if n > len(palette): raise ValueError(f"Requested {n} colors, function can only return colors up to the base palette's length ({len(palette)})") - return tuple( palette[math.floor(i)] for i in np.linspace(0, len(palette)-1, num=n) ) + step = (len(palette) - 1) / (n - 1) + return tuple(palette[math.floor(step * i)] for i in range(n)) def diverging_palette(palette1: Palette, palette2: Palette, n: int, midpoint: float = 0.5) -> Palette: """ Generate a new palette by combining exactly two input palettes.