anyplotlib 0.9.0__tar.gz → 0.10.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (299) hide show
  1. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/AGENTS.md +1 -1
  2. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/CHANGELOG.rst +17 -0
  3. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/PKG-INFO +1 -1
  4. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/FIGURE_ESM.md +98 -76
  5. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/_base_plot.py +99 -4
  6. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/callbacks.py +1 -1
  7. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/figure_esm.js +293 -97
  8. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/markers.py +34 -0
  9. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot1d/_plot1d.py +16 -1
  10. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot2d/_plot2d.py +91 -10
  11. anyplotlib-0.10.0/anyplotlib/tests/baselines/imshow_labels.png +0 -0
  12. anyplotlib-0.10.0/anyplotlib/tests/test_markers/test_text_style.py +146 -0
  13. anyplotlib-0.10.0/anyplotlib/tests/test_plot2d/test_axis_ticks.py +205 -0
  14. anyplotlib-0.10.0/anyplotlib/tests/test_plot2d/test_colorbar_values.py +298 -0
  15. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_imshow.py +13 -10
  16. anyplotlib-0.10.0/anyplotlib/tests/test_plot2d/test_pointer_pixel_centre.py +168 -0
  17. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_root/index.html +3 -3
  18. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_root/switcher.json +5 -0
  19. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/conf.py +1 -1
  20. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/embedding.rst +3 -2
  21. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/events.rst +8 -4
  22. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/pyproject.toml +1 -1
  23. anyplotlib-0.9.0/anyplotlib/tests/baselines/imshow_labels.png +0 -0
  24. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/.github/workflows/ci.yml +0 -0
  25. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/.github/workflows/docs.yml +0 -0
  26. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/.github/workflows/prepare_release.yml +0 -0
  27. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/.github/workflows/release.yml +0 -0
  28. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/.github/workflows/tests.yml +0 -0
  29. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/.gitignore +0 -0
  30. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Benchmarks/README.rst +0 -0
  31. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Benchmarks/plot_benchmark_comparison.py +0 -0
  32. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/README.rst +0 -0
  33. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_3d_spectral_viewer.py +0 -0
  34. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_eels_explorer.py +0 -0
  35. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_figure_annotations.py +0 -0
  36. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_interactive_fft.py +0 -0
  37. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_interactive_fitting.py +0 -0
  38. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_ipf_density_map.py +0 -0
  39. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_ipf_explorer.py +0 -0
  40. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_key_bindings.py +0 -0
  41. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_particle_picker.py +0 -0
  42. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_point_widget.py +0 -0
  43. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_segment_by_contrast.py +0 -0
  44. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_segment_by_contrast_advanced.py +0 -0
  45. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_spectra_roi_inspector.py +0 -0
  46. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_star_globe_explorer.py +0 -0
  47. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_threshold_explorer.py +0 -0
  48. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Interactive/plot_voxel_grain_explorer.py +0 -0
  49. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/README.rst +0 -0
  50. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_arrows.py +0 -0
  51. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_circles.py +0 -0
  52. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_ellipses.py +0 -0
  53. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_horizontal_lines.py +0 -0
  54. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_line_segments.py +0 -0
  55. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_points.py +0 -0
  56. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_polygons.py +0 -0
  57. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_rectangles.py +0 -0
  58. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_squares.py +0 -0
  59. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_texts.py +0 -0
  60. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_transform_markers.py +0 -0
  61. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Markers/plot_vertical_lines.py +0 -0
  62. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/README.rst +0 -0
  63. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_3d.py +0 -0
  64. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_3d_texture.py +0 -0
  65. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_aspect_ratio.py +0 -0
  66. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_bar.py +0 -0
  67. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_gpu_voxels.py +0 -0
  68. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_gridspec_custom.py +0 -0
  69. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_image2d.py +0 -0
  70. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_inset.py +0 -0
  71. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_key_overlays.py +0 -0
  72. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_label_formatting.py +0 -0
  73. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_line_styles.py +0 -0
  74. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_pcolormesh.py +0 -0
  75. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_spectra1d.py +0 -0
  76. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_step_and_log.py +0 -0
  77. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_subplots_adjust.py +0 -0
  78. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_tile_backend.py +0 -0
  79. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/PlotTypes/plot_twinx.py +0 -0
  80. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/README.rst +0 -0
  81. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/README.rst +0 -0
  82. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget1d_hline.py +0 -0
  83. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget1d_point.py +0 -0
  84. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget1d_range.py +0 -0
  85. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget1d_vline.py +0 -0
  86. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_annular.py +0 -0
  87. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_arrow.py +0 -0
  88. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_circle.py +0 -0
  89. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_crosshair.py +0 -0
  90. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_label.py +0 -0
  91. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_polygon.py +0 -0
  92. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget2d_rectangle.py +0 -0
  93. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Examples/Widgets/plot_widget3d_plane.py +0 -0
  94. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/LICENSE +0 -0
  95. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/Makefile +0 -0
  96. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/README.md +0 -0
  97. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/__init__.py +0 -0
  98. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/_binary_frame.py +0 -0
  99. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/_electron.py +0 -0
  100. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/_export.py +0 -0
  101. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/_repr_utils.py +0 -0
  102. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/_utils.py +0 -0
  103. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/axes/__init__.py +0 -0
  104. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/axes/_axes.py +0 -0
  105. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/axes/_inset_axes.py +0 -0
  106. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/conftest.py +0 -0
  107. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/embed.py +0 -0
  108. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/figure/__init__.py +0 -0
  109. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/figure/_figure.py +0 -0
  110. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/figure/_gridspec.py +0 -0
  111. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/figure/_subplots.py +0 -0
  112. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/keys.py +0 -0
  113. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot1d/__init__.py +0 -0
  114. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot1d/_plotbar.py +0 -0
  115. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot2d/__init__.py +0 -0
  116. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot2d/_layer.py +0 -0
  117. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot2d/_plotmesh.py +0 -0
  118. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot2d/_tile_backend.py +0 -0
  119. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot3d/__init__.py +0 -0
  120. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plot3d/_plot3d.py +0 -0
  121. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plotxy/__init__.py +0 -0
  122. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/plotxy/_plotxy.py +0 -0
  123. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/__init__.py +0 -0
  124. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/_directive.py +0 -0
  125. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/_repr_utils.py +0 -0
  126. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/_scraper.py +0 -0
  127. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/_wheel_builder.py +0 -0
  128. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/static/anywidget_bridge.js +0 -0
  129. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/static/anywidget_overlay.css +0 -0
  130. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/__init__.py +0 -0
  131. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/conftest.py +0 -0
  132. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/test_directive.py +0 -0
  133. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/test_init.py +0 -0
  134. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/test_repr_utils.py +0 -0
  135. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/test_scraper.py +0 -0
  136. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/sphinx_anywidget/tests/test_wheel_builder.py +0 -0
  137. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/__init__.py +0 -0
  138. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/_gpu_clim_check.cjs +0 -0
  139. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/_png_utils.py +0 -0
  140. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/bar_basic.png +0 -0
  141. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/gridspec_3col_equal_spectra.png +0 -0
  142. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/gridspec_asymmetric_width_ratios.png +0 -0
  143. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/gridspec_height_ratio_image_histogram.png +0 -0
  144. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/gridspec_image_two_spectra.png +0 -0
  145. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/gridspec_side_by_side_1d.png +0 -0
  146. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/gridspec_spanning_top_two_bottom.png +0 -0
  147. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/imshow_axis_off.png +0 -0
  148. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/imshow_checkerboard.png +0 -0
  149. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/imshow_gradient.png +0 -0
  150. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/imshow_viridis.png +0 -0
  151. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/inset_1d.png +0 -0
  152. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/inset_maximized.png +0 -0
  153. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/inset_minimized.png +0 -0
  154. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/inset_normal_2d.png +0 -0
  155. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/inset_stacked.png +0 -0
  156. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/inset_stacked_one_minimized.png +0 -0
  157. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/pcolormesh_uniform.png +0 -0
  158. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_all_linestyles.png +0 -0
  159. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_alpha.png +0 -0
  160. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_axis_off.png +0 -0
  161. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_dashed.png +0 -0
  162. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_marker_symbols.png +0 -0
  163. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_markers.png +0 -0
  164. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_multi.png +0 -0
  165. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_sine.png +0 -0
  166. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_title.png +0 -0
  167. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot1d_twinx.png +0 -0
  168. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/plot3d_surface.png +0 -0
  169. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/baselines/subplots_2x1.png +0 -0
  170. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/conftest.py +0 -0
  171. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_benchmarks/__init__.py +0 -0
  172. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_benchmarks/baselines.json +0 -0
  173. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_benchmarks/benchmarks/baselines.json +0 -0
  174. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_benchmarks/test_benchmarks.py +0 -0
  175. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_benchmarks/test_benchmarks_py.py +0 -0
  176. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_documentation/__init__.py +0 -0
  177. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_documentation/test_bridge.py +0 -0
  178. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_documentation/test_push_hook.py +0 -0
  179. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_documentation/test_scraper.py +0 -0
  180. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_electron/__init__.py +0 -0
  181. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_electron/test_binary_frame.py +0 -0
  182. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/__init__.py +0 -0
  183. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/_export_utils.py +0 -0
  184. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/conftest.py +0 -0
  185. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_embed_3d.py +0 -0
  186. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_embed_api.py +0 -0
  187. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_embed_escaping.py +0 -0
  188. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_embed_mount.py +0 -0
  189. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_embed_navigated.py +0 -0
  190. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_embed_set_image.py +0 -0
  191. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_export_menu.py +0 -0
  192. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_export_pixel_tokens.py +0 -0
  193. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_export_png.py +0 -0
  194. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_export_sources.py +0 -0
  195. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_export_widget_sync.py +0 -0
  196. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_embed/test_savefig.py +0 -0
  197. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_examples/__init__.py +0 -0
  198. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_examples/test_interactive_examples.py +0 -0
  199. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/__init__.py +0 -0
  200. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/_event_test_utils.py +0 -0
  201. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_blit_audit.py +0 -0
  202. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_callbacks_playwright.py +0 -0
  203. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_callbacks_unit.py +0 -0
  204. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_circle_lock_center.py +0 -0
  205. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_edit_chrome.py +0 -0
  206. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_edit_chrome_playwright.py +0 -0
  207. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_event_pause_hold.py +0 -0
  208. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_event_plots.py +0 -0
  209. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_event_settled.py +0 -0
  210. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_events_regression.py +0 -0
  211. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_orbit_direction.py +0 -0
  212. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_pointer_down_1d.py +0 -0
  213. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_range_orientation_snap.py +0 -0
  214. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_star_globe_linking.py +0 -0
  215. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_tile_parity_playwright.py +0 -0
  216. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_title.py +0 -0
  217. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_touch.py +0 -0
  218. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_widget_brush.py +0 -0
  219. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_widget_max_extent.py +0 -0
  220. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_widget_set_notify.py +0 -0
  221. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_widgets.py +0 -0
  222. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_interactive/test_widgets_line_2d.py +0 -0
  223. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_keys/test_keys.py +0 -0
  224. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_labels/__init__.py +0 -0
  225. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_labels/test_label_api.py +0 -0
  226. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_labels/test_label_rendering.py +0 -0
  227. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_labels/test_no_clipping.py +0 -0
  228. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_labels/test_ylabel_clearance.py +0 -0
  229. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/__init__.py +0 -0
  230. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_batch.py +0 -0
  231. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_coord_conversion.py +0 -0
  232. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_geom_channel.py +0 -0
  233. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_gridspec.py +0 -0
  234. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_inset.py +0 -0
  235. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_inset_callout.py +0 -0
  236. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_interaction.py +0 -0
  237. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_layouts/test_visual.py +0 -0
  238. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_markers/__init__.py +0 -0
  239. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_markers/test_marker_transforms.py +0 -0
  240. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_markers/test_markers.py +0 -0
  241. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_markers/test_per_marker_colors.py +0 -0
  242. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_markers/test_size_units.py +0 -0
  243. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot1d/__init__.py +0 -0
  244. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot1d/test_line_none_rendering.py +0 -0
  245. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot1d/test_plot1d.py +0 -0
  246. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot1d/test_plotbar.py +0 -0
  247. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/__init__.py +0 -0
  248. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_colorbar_gap_scalebar.py +0 -0
  249. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_detail_tile.py +0 -0
  250. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_display_window.py +0 -0
  251. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_first_paint_race.py +0 -0
  252. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_gpu_image.py +0 -0
  253. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_gpu_parity_playwright.py +0 -0
  254. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_imshow_rgb.py +0 -0
  255. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_layers.py +0 -0
  256. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_layers_playwright.py +0 -0
  257. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_pcolormesh.py +0 -0
  258. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_plot2d_api.py +0 -0
  259. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_rapid_frame_update.py +0 -0
  260. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_status_pixel_value.py +0 -0
  261. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_tile_backend.py +0 -0
  262. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_tile_diagnostics.py +0 -0
  263. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_tiled_imshow.py +0 -0
  264. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot2d/test_zoom_view_write.py +0 -0
  265. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/__init__.py +0 -0
  266. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_colors_highlight.py +0 -0
  267. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_gpu_depth.py +0 -0
  268. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_gpu_fallback.py +0 -0
  269. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_gpu_hidden_reveal.py +0 -0
  270. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_plot3d.py +0 -0
  271. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_texture.py +0 -0
  272. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plot3d/test_voxels_planes.py +0 -0
  273. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/tests/test_plotxy/test_plotxy.py +0 -0
  274. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/widgets/__init__.py +0 -0
  275. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/widgets/_base.py +0 -0
  276. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/widgets/_widgets1d.py +0 -0
  277. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/widgets/_widgets2d.py +0 -0
  278. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/anyplotlib/widgets/_widgets3d.py +0 -0
  279. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_sg_html_scraper.py +0 -0
  280. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_static/anyplotlib.svg +0 -0
  281. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_static/custom.css +0 -0
  282. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_static/pyodide_bridge.js +0 -0
  283. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/_templates/autosummary/class.rst +0 -0
  284. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/callbacks.rst +0 -0
  285. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/figure.rst +0 -0
  286. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/figure_plots.rst +0 -0
  287. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/index.rst +0 -0
  288. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/keys.rst +0 -0
  289. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/markers.rst +0 -0
  290. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/api/widgets.rst +0 -0
  291. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/benchmarking.rst +0 -0
  292. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/dev/index.rst +0 -0
  293. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/exporting.rst +0 -0
  294. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/getting_started.rst +0 -0
  295. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/docs/index.rst +0 -0
  296. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/make.bat +0 -0
  297. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/upcoming_changes/.gitkeep +0 -0
  298. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/upcoming_changes/README.rst +0 -0
  299. {anyplotlib-0.9.0 → anyplotlib-0.10.0}/uv.lock +0 -0
@@ -115,7 +115,7 @@ grep -nE '^\s*(function|const|let) [A-Za-z_]' anyplotlib/figure_esm.js
115
115
  ```
116
116
 
117
117
  and reconcile against the two numbered tables (the section map near the top and
118
- the 2-D function table). Both were last verified at 12,211 lines.
118
+ the 2-D function table). Both were last verified at 12,407 lines.
119
119
 
120
120
  Changelog entries: add a fragment file to `upcoming_changes/` (e.g.
121
121
  `123.new_feature.rst`) — towncrier assembles `CHANGELOG.rst` at release time.
@@ -10,6 +10,23 @@ Fragment files in ``upcoming_changes/`` are assembled into this file by
10
10
 
11
11
  .. towncrier release notes start
12
12
 
13
+ 0.10.0 (2026-09-14)
14
+ ===================
15
+
16
+ API and Behaviour Changes
17
+ -------------------------
18
+
19
+ - 2-D pointer events (``pointer_down``, ``double_click``, ``pointer_settled``, ``key_down``) and the hover readout now report ``img_x``/``img_y`` in the pixel-centre convention that markers, widgets and :meth:`~anyplotlib.Plot2D.display_to_data` already used — they read half a pixel right and down before — so ``round(event.img_x)`` names the clicked pixel (``int()`` no longer does), brush strokes land under the cursor, and an ``imshow`` event's ``xdata``/``ydata`` is exactly the axis value of the pixel centre it hits (``pcolormesh`` values are unchanged). (`#73 <https://github.com/CSSFrancis/anyplotlib/pull/73>`_)
20
+ - 2-D tick labels now sit on the pixels they name: ``imshow`` axis values are placed at pixel centres (the image extends half a pixel past the first and last value, as matplotlib's ``imshow`` extent does) through the same transform markers and pointer events use, so ticks also follow a letterboxed image instead of spanning the whole gutter, and an ``origin='lower'`` image gets y ticks at all; :meth:`~anyplotlib.Plot2D.set_view` / ``set_xlim`` / ``set_ylim`` read the axis the same way — ``set_xlim(-0.5, n - 0.5)`` is the whole image, ``set_xlim(0, n - 1)`` now crops the outer half pixels — and accept a descending ``origin='lower'`` y axis. (`#74 <https://github.com/CSSFrancis/anyplotlib/pull/74>`_)
21
+
22
+
23
+ New Features
24
+ ------------
25
+
26
+ - The 2-D colorbar now writes its display minimum and maximum beside the strip — both ends in one format, and the strip itself coloured through the display window (saturated beyond it, the way the image is) and spanning the image rather than the whole panel — so a labelled scale says how much and not only which way; the image gives up a value gutter budgeted for the numbers (fixed for ordinary values so a contrast drag never moves the image, wider for the rare long ones, dropped in a cell too narrow to keep 40 px of image, and mirrored in :meth:`plot_box`) so they never clip. (`#71 <https://github.com/CSSFrancis/anyplotlib/pull/71>`_)
27
+ - Text markers (:meth:`~anyplotlib.Plot2D.add_texts`, :meth:`~anyplotlib.Plot1D.add_texts` and ``add_text``) gained ``fontweight`` for bold labels and ``outline_color`` / ``outline_width`` for a halo stroked under the text, which keeps a label legible over both light and dark parts of an image. (`#73 <https://github.com/CSSFrancis/anyplotlib/pull/73>`_)
28
+
29
+
13
30
  0.9.0 (2026-09-11)
14
31
  ==================
15
32
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: anyplotlib
3
- Version: 0.9.0
3
+ Version: 0.10.0
4
4
  Summary: A plotting library using python, javascript and anywidget for performant in browser plotting.
5
5
  Project-URL: Homepage, https://cssfrancis.github.io/anyplotlib/
6
6
  Project-URL: Repository, https://github.com/CSSFrancis/anyplotlib
@@ -35,8 +35,8 @@ Rule 4 – Zoom is relative to the fit-rect.
35
35
  zoom=Z → a 1/Z portion of the image fills the fit-rect.
36
36
 
37
37
  Rule 5 – Text never clips. Optional gutters earn real layout space:
38
- the colorbar (strip + label, _cbWidth) is subtracted from the
39
- image width; the 2D title strip (_padT) grows for large or TeX
38
+ the colorbar (strip + value gutter + label, _cbWidth) is
39
+ subtracted from the image width; the 2D title strip (_padT) grows for large or TeX
40
40
  titles; 1D/bar titles clamp their drawn size to the fixed strip
41
41
  (_titlePx); edge tick labels are nudged inward.
42
42
  ```
@@ -50,31 +50,31 @@ Rule 5 – Text never clips. Optional gutters earn real layout space:
50
50
  | Shared plot-area padding (`PAD_*`) | 9 |
51
51
  | Theme (dark/light detection) | 26 |
52
52
  | Shared math helpers | 64 |
53
- | b64 array decode helpers | 109 |
54
- | **Rich-text (mini-TeX) engine**: `_texRuns` / `_texLayout` / `_drawTex` | 161 / 228 / 250 |
55
- | **2D gutter geometry**: `_cbWidth` / `_cbGap` / `_padT` / `_titlePx` | 301 / 313 / 323 / 333 |
56
- | **Layout engine** `applyLayout` | 824 |
57
- | `_buildCanvasStack` | 907 |
58
- | `_createPanelDOM` | 1049 |
59
- | `_createInsetDOM` / `_applyAllInsetStates` | 1190 / 1584 |
60
- | `_resizePanelDOM` | 2297 |
61
- | **2D drawing**: `_imgFitRect` | 2461 |
62
- | `draw2d` | 2790 |
63
- | `drawScaleBar2d` / `drawColorbar2d` | 2985 / 3265 |
64
- | **Floating keys**: `_keyEnsure` / `_keyRect` / `drawKeys` | 3084 / 3107 / 3120 |
65
- | `_drawAxes2d` (ticks, labels, title) | 3319 |
66
- | `drawOverlay2d` / `drawMarkers2d` | 3472 / 3636 |
67
- | **Image layers**: `_layerBytes` / `_layerBitmap` / `_drawLayers2d` | 2610 / 2634 / 2695 |
68
- | Binary-bytes splice: `_spliceBinaryBytes` / `_registerBinaryPixelListeners` | 780 / 811 |
69
- | **Hover readout**: `_pixelValue2d` / `_readoutInfo2d` | 4480 / 4562 |
70
- | `_notifyReadout` / `_updateStatus2d` / `_armValueProbe` | 4602 / 4617 / 4638 |
71
- | **3D drawing**: `draw3d` | 5614 |
72
- | Event emission `_emitEvent` | 6451 |
73
- | 3D event handlers `_attachEvents3d` | 6508 |
74
- | **1D drawing**: `draw1d` | 6732 |
75
- | `_drawLine` (1D series + markers) | 6885 |
76
- | `drawOverlay1d` / `drawMarkers1d` | 7178 / 7262 |
77
- | Marker hit-test `_markerHitTest2d` | 7530 |
53
+ | b64 array decode helpers | 141 |
54
+ | **Rich-text (mini-TeX) engine**: `_texRuns` / `_texLayout` / `_drawTex` | 193 / 260 / 282 |
55
+ | **2D gutter geometry**: `_cbLabelW` / `_cbValueChars` / `_cbTickW` / `_cbWidth` / `_cbGap` / `_padT` / `_titlePx` | 331 / 342 / 360 / 372 / 382 / 392 / 402 |
56
+ | **Layout engine** `applyLayout` | 893 |
57
+ | `_buildCanvasStack` | 976 |
58
+ | `_createPanelDOM` | 1118 |
59
+ | `_createInsetDOM` / `_applyAllInsetStates` | 1259 / 1653 |
60
+ | `_resizePanelDOM` | 2366 |
61
+ | **2D drawing**: `_imgFitRect` | 2537 |
62
+ | `draw2d` | 2881 |
63
+ | `drawScaleBar2d` / `drawColorbar2d` | 3076 / 3356 |
64
+ | **Floating keys**: `_keyEnsure` / `_keyRect` / `drawKeys` | 3175 / 3198 / 3211 |
65
+ | `_drawAxes2d` (ticks, labels, title) | 3468 |
66
+ | `drawOverlay2d` / `drawMarkers2d` | 3623 / 3787 |
67
+ | **Image layers**: `_layerBytes` / `_layerBitmap` / `_drawLayers2d` | 2701 / 2725 / 2786 |
68
+ | Binary-bytes splice: `_spliceBinaryBytes` / `_registerBinaryPixelListeners` | 849 / 880 |
69
+ | **Hover readout**: `_pixelValue2d` / `_readoutInfo2d` | 4631 / 4716 |
70
+ | `_notifyReadout` / `_updateStatus2d` / `_armValueProbe` | 4755 / 4770 / 4791 |
71
+ | **3D drawing**: `draw3d` | 5767 |
72
+ | Event emission `_emitEvent` | 6604 |
73
+ | 3D event handlers `_attachEvents3d` | 6661 |
74
+ | **1D drawing**: `draw1d` | 6885 |
75
+ | `_drawLine` (1D series + markers) | 7038 |
76
+ | `drawOverlay1d` / `drawMarkers1d` | 7331 / 7415 |
77
+ | Marker hit-test `_markerHitTest2d` | 7682 |
78
78
 
79
79
  > **`raster` marker (1D/PlotXY)** — `drawMarkers1d` has a `type==='raster'`
80
80
  > branch that blits a single RGBA image across data-coord `extent` (the fast
@@ -83,22 +83,22 @@ Rule 5 – Text never clips. Optional gutters earn real layout space:
83
83
  > redraws never re-transmit them; the decoded `OffscreenCanvas` is cached on
84
84
  > the marker set (`ms._rasterBmp`/`_rasterKey`). The shared `clip_path` block
85
85
  > clips it to a curved sector.
86
- | Panel event dispatch `_attachPanelEvents` | 7787 |
87
- | 2D events `_attachEvents2d` | 7829 |
88
- | 1D events `_attachEvents1d` | 8222 |
89
- | 2D widget drag `_ovHitTest2d` / `_doDrag2d` | 8497 / 8776 |
90
- | **Brush strokes**: `_brushLiveBegin` / `_brushCommit` / `_brushErase` / `_brushPaintAt` | 8689 / 8703 / 8732 / 8767 |
91
- | 1D widget drag `_canvasXToFrac1d` … / snapping `_snapVal` | 8901 / 8974 |
92
- | Shared-axis propagation `_getShareGroups` | 9045 |
93
- | Figure resize `_applyFigResizeDOM` | 9109 |
94
- | **Bar chart**: `_barGeom` / `drawBar` / `_attachEventsBar` | 9300 / 9363 / 9739 |
95
- | Generic redraw `_redrawPanel` | 9929 |
96
- | **PNG export**: `_compositeCanvas` / `exportCanvas` / `exportPNG` | 10088 / 10284 / 10343 |
97
- | Native-resolution render `_withNativeSize` | 10064 |
98
- | **Export UI**: `_toast` / `_downloadCanvas` / `_openMenu` | 10377 / 10486 / 10665 |
99
- | Export registry `registerExportAction` | 10542 |
100
- | **Embedding API**: `createLocalModel` / `mount` | 11056 / 11112 |
101
- | **Navigated embed**: `decodeBlocks` / `mountNavigated` | 11367 / 11754 |
86
+ | Panel event dispatch `_attachPanelEvents` | 7939 |
87
+ | 2D events `_attachEvents2d` | 8025 |
88
+ | 1D events `_attachEvents1d` | 8411 |
89
+ | 2D widget drag `_ovHitTest2d` / `_doDrag2d` | 8686 / 8965 |
90
+ | **Brush strokes**: `_brushLiveBegin` / `_brushCommit` / `_brushErase` / `_brushPaintAt` | 8878 / 8892 / 8921 / 8956 |
91
+ | 1D widget drag `_canvasXToFrac1d` … / snapping `_snapVal` | 9090 / 9163 |
92
+ | Shared-axis propagation `_getShareGroups` | 9234 |
93
+ | Figure resize `_applyFigResizeDOM` | 9298 |
94
+ | **Bar chart**: `_barGeom` / `drawBar` / `_attachEventsBar` | 9492 / 9555 / 9931 |
95
+ | Generic redraw `_redrawPanel` | 10121 |
96
+ | **PNG export**: `_compositeCanvas` / `exportCanvas` / `exportPNG` | 10284 / 10480 / 10539 |
97
+ | Native-resolution render `_withNativeSize` | 10260 |
98
+ | **Export UI**: `_toast` / `_downloadCanvas` / `_openMenu` | 10573 / 10682 / 10861 |
99
+ | Export registry `registerExportAction` | 10738 |
100
+ | **Embedding API**: `createLocalModel` / `mount` | 11252 / 11308 |
101
+ | **Navigated embed**: `decodeBlocks` / `mountNavigated` | 11563 / 11950 |
102
102
 
103
103
  > **`brush` widget (2-D)** — the one widget whose drag is *modal*, and the one
104
104
  > that must NOT write the model per tick. `_ovHitTest2d` takes an extra `mods`
@@ -148,7 +148,10 @@ with fallbacks to the historical defaults: `title_size||11`,
148
148
 
149
149
  | Function | Purpose |
150
150
  |----------|---------|
151
- | `_cbWidth(st)` | Width reserved for the colorbar: 0 when hidden, else `16 + (label ? label_size+8 : 0)`. Subtracted from the image width in `_resizePanelDOM` / `_resizePanelCSS` so the strip + label always fit inside the panel. |
151
+ | `_cbLabelW(st)` | The rotated-label gutter: `label_size + 8`, 0 without a label. |
152
+ | `_cbValueChars(st)` | Characters budgeted for the `display_min` / `display_max` values: 7 (all of `fmtRange`'s ordinary output, so a contrast drag never moves the image), more only for longer strings such as a three-digit exponent. `fmtRange` (next to `fmtVal`) formats BOTH ends alike — exponent notation when the larger magnitude is outside [1e-2, 1e4), else decimals from the span (three significant digits of it, so ±1.25 reads 1.25). Mirrored by Python `_colorbar_value_chars` / `colorbar_texts`. |
153
+ | `_cbTickW(st, availW)` | Width of the value gutter right of the strip: `round(chars * 0.6 * tick_size) + 3`. With `availW` (image + colorbar width after the axis gutters) it is 0 when the values would leave less than `CB_MIN_IMAGE_W` (40 px) of image — a narrow grid cell keeps the strip and label and drops the numbers. `_resizePanelDOM` stores the result on `p._cbTickW` for `drawColorbar2d`. Mirrored in Python's `plot_box`. |
154
+ | `_cbWidth(st, availW)` | Width reserved for the colorbar: 0 when hidden, else `16 + _cbTickW + _cbLabelW`. Subtracted from the image width in `_resizePanelDOM` / `_resizePanelCSS` so the strip, its values and its label always fit inside the panel. |
152
155
  | `_padT(st)` | 2D title-strip height: `PAD_T` (12) for default-size plain titles (pixel-identical layouts); grows to `ceil(size*1.3)+2..4` for `title_size > 11` or TeX titles (superscript rise). Stored as `p._padT`. |
153
156
  | `_titlePx(st)` | Drawn title size for fixed-strip panels (1D/bar): clamps to 11 (10 for TeX titles) so nothing clips. |
154
157
 
@@ -279,17 +282,36 @@ st.colorbar_label_size (label font sizes; optional)
279
282
 
280
283
  | Function | Line | Purpose |
281
284
  |----------|------|---------|
282
- | **`_imgFitRect(iw,ih,cw,ch)`** | **2384** | Largest rect of aspect `iw:ih` centred in `cw×ch`; all 2-D coordinate functions derive from this |
283
- | `draw2d(p)` | 2713 | Main render: `_resizePanelDOM` → decode → LUT → ImageBitmap → blit; then mask, axes, scale bar, colorbar, overlay, markers |
284
- | `drawScaleBar2d(p)` | 2908 | Physical scale bar |
285
- | `_rawBand(st)` / `_buildLut32(st)` | 2433 / 2440 | The quantisation band the u8 bytes were encoded over, then the 256-entry LUT built from it. `_rawBand` mirrors Python `_tile_quant_clim`: a DEGENERATE band (`raw_max <= raw_min`) is UNSET and falls back to `display_min/max`. Both render paths and the colorbar go through it — honouring a `(0, 0)` band paints solid black |
286
- | `drawColorbar2d(p)` | 3188 | Gradient strip + min/max marks (band-relative, via `_rawBand`) + rotated label centred in the `_cbWidth` gutter |
287
- | `_drawAxes2d(p)` | 3242 | Ticks (edge labels nudged inward both axes), axis labels + title via `_drawTex` |
288
- | `drawOverlay2d(p)` / `drawMarkers2d(p)` | 3395 / 3559 | Widgets / marker groups |
285
+ | **`_imgFitRect(iw,ih,cw,ch)`** / `_cbFitRect(st,imgW,imgH)` | **2537 / 2546** | Largest rect of aspect `iw:ih` centred in `cw×ch`; all 2-D coordinate functions derive from this. `_cbFitRect` is its vertical extent in whole px — the colorbar strip spans the letterboxed IMAGE, not the whole image area (`p._cbH`) |
286
+ | `draw2d(p)` | 2881 | Main render: `_resizePanelDOM` → decode → LUT → ImageBitmap → blit; then mask, axes, scale bar, colorbar, overlay, markers |
287
+ | `drawScaleBar2d(p)` | 3076 | Physical scale bar |
288
+ | `_rawBand(st)` / `_displayFrac(st, val)` / `_buildLut32(st)` | 2596 / 2606 / 2614 | The quantisation band the u8 bytes were encoded over, the ONE rule mapping a value through the display window and scale mode to a colormap fraction (shared by the LUT and the colorbar strip, so the strip's colours are the image's), then the 256-entry LUT built from both. `_rawBand` mirrors Python `_tile_quant_clim`: a DEGENERATE band (`raw_max <= raw_min`) is UNSET and falls back to `display_min/max`. Both render paths and the colorbar go through it — honouring a `(0, 0)` band paints solid black |
289
+ | `drawColorbar2d(p)` | 3356 | Gradient strip coloured through the display window (`_displayFrac` — saturated beyond it, like the image) + min/max marks (band-relative, via `_rawBand`) + the two values written beside them (`fmtRange`; kept inside the strip by the glyphs' measured extent, held apart on a tiny range, the maximum alone at its own place on a strip too short for both; omitted when the layout dropped the gutter, `p._cbTickW == 0`) + rotated label centred right after the values' measured width (never past the reserved gutter) |
290
+ | `_drawAxes2d(p)` | 3468 | Ticks placed through `_imgToCanvas2d` (pixel-centre axes, letterbox-aware; edge labels nudged inward both axes), axis labels + title via `_drawTex` |
291
+ | `drawOverlay2d(p)` / `drawMarkers2d(p)` | 3623 / 3787 | Widgets / marker groups |
289
292
 
290
293
  Zoom model: at `zoom=1` the whole image fills the fit-rect; at `zoom=Z>1` a
291
294
  `1/Z` region fills it. `_imgToCanvas2d` / `_canvasToImg2d` must stay exact
292
- inverses of the blit geometry.
295
+ inverses of the blit geometry — and of each other. Both use the pixel-CENTRE
296
+ convention (integer *i* is the centre of pixel *i*, which spans
297
+ `[i − 0.5, i + 0.5)`), the same as marker offsets, widget positions and Python's
298
+ `data_to_display` / `display_to_data`; `_imgPix2d` / `_inImgAxis2d` name the
299
+ pixel under a coordinate and bound it. Pointer events and the readout map a
300
+ coordinate to `xdata`/`ydata` through `_imgToAxisVal2d` (imshow axes are
301
+ per-pixel centres, pcolormesh axes cell edges). Code that addresses texels or
302
+ the detail region by pixel EDGE (`_pixelValue2d`) adds the `0.5` back itself.
303
+
304
+ The tick gutters (`_drawAxes2d`) use the same chain in reverse: tick value →
305
+ `_axisValToImg2d` (imshow; pcolormesh goes through `_axisValToFrac` × n − ½) →
306
+ `_imgToCanvas2d`, so ticks honour the letterboxed fit rect, zoom < 1, pan
307
+ clamping and descending (`origin='lower'`) axes for free. The visible value
308
+ range is the gutter's two ends through `_canvasToImg2d`, clamped to the outer
309
+ pixel edges. Python's `Plot2D._axis_extent_frac` (behind `set_view` /
310
+ `set_xlim`) mirrors `_axisValToImg2d` — keep the two in step.
311
+
312
+ `texts` markers (1-D and 2-D) set their font and optional outline through
313
+ `_markerTextStyle(ctx, ms)` (`fontweight`, `outline_color`, `outline_width`)
314
+ and draw via `_drawMarkerText`, which strokes the halo under the fill.
293
315
 
294
316
  ### Hover readout
295
317
 
@@ -638,13 +660,13 @@ exportCanvas(same opts) → {canvas, width, height} // synchronous, throws
638
660
 
639
661
  | Function | Line | Purpose |
640
662
  |----------|------|---------|
641
- | `_cssScale` | 9964 | inverse of `_applyScale`'s `transform:scale()` |
642
- | `_panelBox` | 9975 | the element whose rect bounds one panel |
643
- | `_neutralizeView` / `_restoreView` | 9984 / 10009 | transient whole-extent view |
644
- | `_nativeGeom` / `_nativeGuard` | 10024 / 10039 | native size + why-not message |
645
- | `_withNativeSize` | 10064 | resize → redraw → run → restore |
646
- | `_compositeCanvas` | 10088 | the compositor (`_drawEl` / `_drawPanel` …) |
647
- | `exportCanvas` / `exportPNG` | 10284 / 10343 | orchestrator / data-URL wrapper |
663
+ | `_cssScale` | 10156 | inverse of `_applyScale`'s `transform:scale()` |
664
+ | `_panelBox` | 10167 | the element whose rect bounds one panel |
665
+ | `_neutralizeView` / `_restoreView` | 10176 / 10201 | transient whole-extent view |
666
+ | `_nativeGeom` / `_nativeGuard` | 10216 / 10235 | native size + why-not message |
667
+ | `_withNativeSize` | 10260 | resize → redraw → run → restore |
668
+ | `_compositeCanvas` | 10284 | the compositor (`_drawEl` / `_drawPanel` …) |
669
+ | `exportCanvas` / `exportPNG` | 10480 / 10539 | orchestrator / data-URL wrapper |
648
670
 
649
671
  **The whole pipeline is ONE synchronous task** — theme swap, view reset, native
650
672
  resize, composite, restore — so the browser never paints an intermediate state
@@ -740,13 +762,13 @@ leaders that cross into the panel included. Pinned by
740
762
 
741
763
  | Function | Line | Purpose |
742
764
  |----------|------|---------|
743
- | `_toast` | 10377 | transient bottom-centre message |
744
- | `_copyCanvas` | 10412 | clipboard write + feature detection |
745
- | `_showPngPreview` | 10436 | framed-document download fallback |
746
- | `_downloadCanvas` | 10486 | `<a download>` or the preview |
747
- | `registerExportAction` | 10542 | downstream extension point |
748
- | `_menuRows` / `_openMenu` | 10596 / 10665 | menu model / DOM |
749
- | `_panelAtPoint` | 10777 | hit test (insets first — they sit on top) |
765
+ | `_toast` | 10573 | transient bottom-centre message |
766
+ | `_copyCanvas` | 10608 | clipboard write + feature detection |
767
+ | `_showPngPreview` | 10632 | framed-document download fallback |
768
+ | `_downloadCanvas` | 10682 | `<a download>` or the preview |
769
+ | `registerExportAction` | 10738 | downstream extension point |
770
+ | `_menuRows` / `_openMenu` | 10792 / 10861 | menu model / DOM |
771
+ | `_panelAtPoint` | 10973 | hit test (insets first — they sit on top) |
750
772
 
751
773
  - **An `exportBtn` badge (⤓, beside the help badge) opens the same menu on an
752
774
  ordinary left click.** It is a `role="button"` with `tabIndex=0` and
@@ -830,16 +852,16 @@ bindings, let it dispatch", rather than a hand-written program per result kind.
830
852
 
831
853
  | Function | Line | Purpose |
832
854
  |----------|------|---------|
833
- | `decodeBlocks` | 11367 | one base64 `fetch` → one ArrayBuffer → a typed-array view per manifest entry |
834
- | `dense` | 11393 | `at` / `gather` / `reduce` over a block whose leading axes are the nav axes |
835
- | `ragged` | 11458 | the same three, over a row-pointer block (`offsets` + one array per column) |
836
- | `maskFromWidget` | 11541 | rectangle / circle / annulus widget dict → `Uint8Array` (carries `width`/`height`) |
837
- | `rasterDisks` | 11581 | splat `{x, y, intensity}` rows as filled disks — the base image of a vectors panel |
838
- | `robustLevels` / `toU8` | 11610 / 11651 | the percentile window and the 8-bit code map, one implementation |
839
- | `panelAxis` | 11729 | a 1-D panel's decoded x axis (`_1dXArr`, else `x_axis_b64`) |
840
- | `installTouchShim` / `reportEmbedHeight` | 11666 / 11685 | page chrome: touch → mouse, `postMessage({aplEmbedHeight})` |
841
- | `encodeBase64` / `typedArrayBytes` | 11705 / 11713 | a 3-D cloud's geometry channel is base64, not the binary side table |
842
- | `mountNavigated` | 11754 | mount + bind + dispatch; resolves to the mount handle plus `dispatch`/`index`/`blocks` |
855
+ | `decodeBlocks` | 11563 | one base64 `fetch` → one ArrayBuffer → a typed-array view per manifest entry |
856
+ | `dense` | 11589 | `at` / `gather` / `reduce` over a block whose leading axes are the nav axes |
857
+ | `ragged` | 11654 | the same three, over a row-pointer block (`offsets` + one array per column) |
858
+ | `maskFromWidget` | 11737 | rectangle / circle / annulus widget dict → `Uint8Array` (carries `width`/`height`) |
859
+ | `rasterDisks` | 11777 | splat `{x, y, intensity}` rows as filled disks — the base image of a vectors panel |
860
+ | `robustLevels` / `toU8` | 11806 / 11847 | the percentile window and the 8-bit code map, one implementation |
861
+ | `panelAxis` | 11925 | a 1-D panel's decoded x axis (`_1dXArr`, else `x_axis_b64`) |
862
+ | `installTouchShim` / `reportEmbedHeight` | 11862 / 11881 | page chrome: touch → mouse, `postMessage({aplEmbedHeight})` |
863
+ | `encodeBase64` / `typedArrayBytes` | 11901 / 11909 | a 3-D cloud's geometry channel is base64, not the binary side table |
864
+ | `mountNavigated` | 11950 | mount + bind + dispatch; resolves to the mount handle plus `dispatch`/`index`/`blocks` |
843
865
 
844
866
  `mountNavigated(el, page, opts)` is **async** — the blob decode is a `fetch` of
845
867
  a `data:` URL — so a host `await`s it. `page` is `{state, blocks, bindings,
@@ -6,11 +6,99 @@ Shared base classes and mixins for all plot panel types.
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
+ import decimal
10
+ import math
11
+
9
12
  from contextlib import contextmanager
10
13
 
11
14
  from anyplotlib.callbacks import _EventMixin
12
15
 
13
16
 
17
+ #: Below this many px of image the colorbar's value gutter is dropped
18
+ #: (mirrors ``CB_MIN_IMAGE_W`` in the JS).
19
+ COLORBAR_MIN_IMAGE_WIDTH = 40
20
+
21
+
22
+ def _js_round(x: float) -> int:
23
+ """JavaScript's ``Math.round`` — half away from zero for positive values —
24
+ where Python's ``round`` would tie to even and put the two sides of the
25
+ layout mirror a pixel apart."""
26
+ return int(math.floor(float(x) + 0.5))
27
+
28
+
29
+ def _js_exponential(value: float, digits: int) -> str:
30
+ """JavaScript's ``Number.toExponential(digits)``: a signed mantissa with
31
+ *digits* decimals, rounded half away from zero on the exact binary value
32
+ (``12500`` → ``1.3e+4``, where ``f"{:e}"`` would tie to even), and an
33
+ exponent without leading zeros (``1.2e+4``, ``-1.5e-10``)."""
34
+ number = decimal.Decimal(value)
35
+ if number == 0:
36
+ return f"{0:.{digits}f}e+0"
37
+ sign = "-" if number < 0 else ""
38
+ number = abs(number)
39
+ exponent = number.adjusted()
40
+ quantum = decimal.Decimal(1).scaleb(-digits)
41
+ mantissa = number.scaleb(-exponent).quantize(quantum, rounding=decimal.ROUND_HALF_UP)
42
+ if mantissa >= 10:
43
+ mantissa = (mantissa / 10).quantize(quantum, rounding=decimal.ROUND_HALF_UP)
44
+ exponent += 1
45
+ return f"{sign}{mantissa}e{exponent:+d}"
46
+
47
+
48
+ def _js_fixed(value: float, digits: int) -> str:
49
+ """JavaScript's ``Number.toFixed(digits)``, which rounds half away from
50
+ zero on the exact binary value."""
51
+ quantum = decimal.Decimal(1).scaleb(-digits)
52
+ rounded = decimal.Decimal(value).quantize(quantum, rounding=decimal.ROUND_HALF_UP)
53
+ return f"{rounded:f}"
54
+
55
+
56
+ def _strip_zeros(text: str) -> str:
57
+ return text.rstrip("0").rstrip(".") if "." in text else text
58
+
59
+
60
+ def colorbar_texts(low: float, high: float) -> tuple[str, str]:
61
+ """The two values the renderer writes beside the colorbar (``fmtRange``),
62
+ mirrored so Python can budget the same width.
63
+
64
+ One format for both ends, so ``0.02`` never sits beside ``-5.0e-3``:
65
+ exponent notation when the larger magnitude is outside ``[1e-2, 1e4)``,
66
+ else fixed with enough decimals to show the ends exactly — three
67
+ significant digits of the span, so ±1.25 reads ``1.25`` and not ``1.3``;
68
+ at most four decimals. Non-finite ends give ``""`` (the renderer draws
69
+ nothing)."""
70
+ low, high = float(low), float(high)
71
+ if not (math.isfinite(low) and math.isfinite(high)):
72
+ return "", ""
73
+ big = max(abs(low), abs(high))
74
+ if big == 0:
75
+ return "0", "0"
76
+ if big >= 1e4 or big < 1e-2:
77
+ return _js_exponential(low, 1), _js_exponential(high, 1)
78
+ span = abs(high - low) or big
79
+ decimals = min(4, max(0, math.ceil(-math.log10(span)) + 2))
80
+ return (_strip_zeros(_js_fixed(low, decimals)),
81
+ _strip_zeros(_js_fixed(high, decimals)))
82
+
83
+
84
+ def _colorbar_value_chars(state: dict) -> int:
85
+ """Characters budgeted for the colorbar's min/max values: 7 in ordinary
86
+ use, so the layout is stable under a contrast drag, more only for the rare
87
+ longer strings. Mirrors ``_cbValueChars`` in the JS."""
88
+ chars = 7
89
+ lo, hi = state.get("display_min"), state.get("display_max")
90
+ if lo is not None and hi is not None:
91
+ chars = max(chars, *(len(t) for t in colorbar_texts(lo, hi)))
92
+ return chars
93
+
94
+
95
+ def _colorbar_value_width(state: dict) -> int:
96
+ """The value gutter in px — mirrors ``_cbTickW`` in the JS before its
97
+ narrow-cell rule."""
98
+ tick = state.get("tick_size") or 10
99
+ return _js_round(_colorbar_value_chars(state) * 0.6 * tick) + 3
100
+
101
+
14
102
  class _BasePlot(_EventMixin):
15
103
  """Universal base for Plot1D, Plot2D, PlotBar, and Plot3D.
16
104
 
@@ -376,14 +464,20 @@ class _PanelMixin:
376
464
  width = max((pw - left - right) if has_axes else pw, 1.0)
377
465
  height = max(ph - pad_t - (bottom if has_axes else 0.0), 1.0)
378
466
 
379
- # The colorbar strip and its gap come out of the image width.
467
+ # The colorbar strip, its value gutter, its label and its gap come out
468
+ # of the image width. Mirrors `_cbWidth` / `_cbTickW` in the JS,
469
+ # including the rule that drops the values in a cell too narrow for
470
+ # them (`width` here is the JS `availW`).
380
471
  if self._state.get("show_colorbar") and not self._state.get("is_rgb"):
381
472
  label = self._state.get("colorbar_label")
382
- label_w = round((self._state.get("colorbar_label_size") or 10) + 8) \
473
+ label_w = _js_round((self._state.get("colorbar_label_size") or 10) + 8) \
383
474
  if label else 0
475
+ tick_w = _colorbar_value_width(self._state)
384
476
  pad = self._state.get("colorbar_pad")
385
477
  gap = 6.0 if pad is None else max(0.0, float(pad))
386
- width = max(width - (16 + label_w) - gap, 1.0)
478
+ if width - gap - 16 - label_w - tick_w < COLORBAR_MIN_IMAGE_WIDTH:
479
+ tick_w = 0
480
+ width = max(width - (16 + tick_w + label_w) - gap, 1.0)
387
481
 
388
482
  if is_image:
389
483
  # Images are drawn "contain" — see _imgFitRect.
@@ -625,7 +719,8 @@ class _MarkerMixin:
625
719
  transform : str, optional
626
720
  Coordinate system for ``(x, y)``. Default ``"data"``.
627
721
  **kwargs : dict
628
- Forwarded to :meth:`add_texts` (e.g. ``clip_display``).
722
+ Forwarded to :meth:`add_texts` (e.g. ``clip_display``,
723
+ ``fontweight``, ``outline_color``).
629
724
 
630
725
  Returns
631
726
  -------
@@ -43,7 +43,7 @@ class Event:
43
43
  button — 0=left 1=middle 2=right; None on move/enter/leave/settled
44
44
  buttons — bitmask of currently held buttons
45
45
  xdata, ydata — data-space coordinates (None for Plot3D)
46
- img_x, img_y — Plot2D/PlotMesh: position in IMAGE PIXELS (column, row; row 0 at the top, origin already applied), so a handler can index the source array directly. None on other plot types.
46
+ img_x, img_y — Plot2D/PlotMesh: position in IMAGE PIXELS (column, row; row 0 at the top, origin already applied), so a handler can index the source array directly. Integer i is the CENTRE of pixel i (as for markers and widgets), so round() names the pixel. None on other plot types.
47
47
  ray — Plot3D only: {"origin": [...], "direction": [...]}
48
48
  line_id — Plot1D only: set when pointer is over a line
49
49
  dwell_ms — pointer_settled only: actual dwell time