-
When a holomap with Raster objects is displayed as a grid, the aspect of the objects is not obeyed.
Example:
```
hmap = hv.HoloMap({(0,5):hv.Raster(np.random.randn(5,5)),
(0,50):hv.Raste…
-
I try to only show the first 3 digits of these floats:
```
%%output size=150
%%opts Table [float_precision=3]
hv.HoloMap({'Hex': hv.ItemTable(OrderedDict(dict(gamma=0.0091, kappa=0.0057, ma=0.0025, n…
-
This is to allow annotating (in a broad sense) data directly on the canvas. This is also related to allowing general purpose editing and selection or copying of text on the canvas. Details will follow…
-
### ALL software version info
```
hvplot : 0.8.0
pandas : 1.4.3
holoviews : 1.14.9
bokeh : 2.4.3
Python version : 3.9.13
IPyth…
-
When creating a hv.Points plot the following would create a legend:
```python
import numpy as np
import holoviews as hv
hv.extension('bokeh')
a = hv.Points(((1, 2), (2, 3)))
a = a.relabel(lab…
-
Currently, the default behavior for Image is to apply bounds of +-0.5 to both axes. If the original data is not square shaped, the result is a distorted image, as shown below:
```python
%%opts Ima…
-
When doing a holoviews plot you can pass in a tuple with data, or kdims and vdims.
When passing in a tuple, you can see that most of the computation is being made in the scheduler, and not on the w…
-
Say `kdims = 'a'` in a HoloMap. In the title of the plot, the default is then in the form "a: [value of a]".
I would like to have something of the form "a: [value of a], b: [value of a]^2" in the t…
-
Hi, in order to control the colorbar font size I am using hooks, are there other way to do that?
```
def hook(plot, element):
plot.handles['cbar'].ax.tick_params(labelsize=15)
plot.handle…
-
#### ALL software version info
MacOS: Ventura 13.3.1
holoviews: 1.15.4
bokeh: 2.4.3
matplotlib: 3.7.1
matplotlib-inline: 0.1.6
python: 3.10.10
jupyter notebook server: 6.5.4
#### Description…