creme332

Results 9 comments of creme332

Try downgrading the version of autoDocstring extension. In my case, v0.6.1 gave the error `command 'autoDocstring.generateDocstring' not Found` and v0.6.0 works fine.

I started facing this issue recently. I've no idea what caused it. VS Code works fine for files found locally on Windows but not for files on WSL. # How...

Try this: ```java // make chart transparent chart.getStyler().setChartBackgroundColor(new Color(0, 0, 0, 0)); chart.getStyler().setPlotBackgroundColor(new Color(0, 0, 0, 0)); JPanel chartPanel = new XChartPanel(chart); chartPanel.setOpaque(false); // make chart panel transparent ``` The...

I don't think `x.intValue()` is the issue. If I simply use `x -> String.valueOf(x.intValue())` as my formatting function, the x-axis tick labels seem fine (no rounding off issues): ![image](https://github.com/knowm/XChart/assets/65414576/b836837e-2215-447b-9472-c12c5b5363e7)

The problem seem to be that `setxAxisTickLabelsFormattingFunction` expects the formatting function to return a unique string for each `x`. Formatting function | Expected behavior | Result --|--|-- `x -> x.intValue()...

@Moonlight-Watcher Did you find a solution yet?

The only solution I found was to use [mambaforge](https://github.com/conda-forge/miniforge#mambaforge) instead of conda and then I followed the instructions from [here](https://github.com/jupyter-xeus/xeus-cling#installation-with-mamba-or-conda) to install xeus-cling.

See the solution which involves using a newer bundler: https://github.com/jglovier/resume-template/issues/168#issuecomment-2798726922

This issue is caused by the 2.1.4 bundler specified in the `Gemfile.lock`. It can be fixed by deleting the current `Gemfile.lock` and using a newer bundler, e.g. `bundle _2.5.11_ install`.