matsvandecavey

Results 5 comments of matsvandecavey

1, 2 and 3 will disappear when you export the plot to .png.

The graphs are always cropped with the same ratio if you save to .png as far as I know. However, you can easily change the setting for the height of...

I could work around this if I convert the DataFrame to a dictionary first Which function is used to convert a DataFrame to the dictionary you use to plot?

I found the function for the workaround. > from charts import core > > series=core.df_to_series(df) > column_dict = {v:i for i,v in enumerate(df)} > column = 'Tz_ref' > series[column_dict[column]]['color']='#2b908f' >...

Same problem arises when using heterogeneous data column using *hover_cols* : `df.hvplot(y='numeric',hover_cols=['heterogeneous'])` with *df*:   | numeric | heterogeneous -- | -- | -- row1 | 0.0 | "string" row2 |...