MrHenning

Results 5 issues of MrHenning

## Details Changing the font-size of the legend does seems to be broken for `PlotlyJS` backend. It works with `GR`: ```julia # default fonts plot( rand(20), label="data", xlabel="label", title="title", legend=true,...

bug
PlotlyJS

First, thank you all for this absolutely beautiful Julia Package :slightly_smiling_face: I am not sure if this is intended, but using `vcat` on `PooledArray` dataframe columns changes their type: ```julia...

decision

## Details When I set the `plot_title` attribute, the plot-legend does not show anymore. **Expected**: ```julia scatter( 1:.1:2, (1:.1:2).^-2, label="2", color=:Red, # plot_title="test", legend=true, ) ``` ![newplot - 2023-11-17T094335 998](https://github.com/JuliaPlots/Plots.jl/assets/5331081/5c7e48ba-d0c4-471e-a1b9-04ca426ca55f)...

bug

When opening a table that contains a `Time` object containing `MICROSECONS` (which I think is the default with `python`/`pandas`) I get an error. Example: 1. Create `python`/`pandas` dataframe: ```python pd.DataFrame(dict(...

bug

I am a big fan of both LsqFit.jl and the python package [LMFIT](https://lmfit.github.io/lmfit-py/). I made a small wrapper-interface for LsqFit.jl to implement the [`Parameter`](https://lmfit.github.io/lmfit-py/parameters.html#simple-example) functionality of LMFIT, to make the...