XChart icon indicating copy to clipboard operation
XChart copied to clipboard

XChart is a light-weight Java library for plotting data.

Results 208 XChart issues
Sort by recently updated
recently updated
newest added

I'm plotting a radar chart which has slightly longer labels, but instead of wrapping text, it puts everything in a single line. Is there any way to make these labels...

Provided from issue #617

```java @Override public CategoryChart getChart() { // Create Chart CategoryChart chart = new CategoryChartBuilder() .width(1200) .height(500) .title("AAA") .build(); CategoryStyler styler = chart.getStyler(); // Customize Chart styler.setPlotContentSize(0.8); styler.setChartPadding(5); styler.setPlotBackgroundColor(ChartColor.WHITE.getColor()); styler.setChartBackgroundColor(ChartColor.WHITE.getColor()); styler.setChartTitleFont(new...

Another attempt at #565, i.e. fixing #564. The previous attempt got reverted because of some `NullPointerExceptions`

**Description** According to the charts offered by the library, when generating one of the **Area** type, the expected result does not match the one generated. The issue is reproducible in:...

Hi. I had my own external zoom and pan wrapper that relied on `Chart#getChartXFromCoordinate()` and `Chart#getChartYFromCoordinate`, which I had implemented for XYCharts, CategoryCharts and HeatMapCharts. I see in the latest...

Hello! Consider the following code: ```java public static void main(final String[] args) { final CategoryChart categoryChart = new CategoryChartBuilder().width(400).height(400).build(); categoryChart.addSeries("one", new double[]{0.0}, new double[]{0.0}); categoryChart.addSeries("two", new double[]{0.0, 1.0}, new double[]{0.0,...

I would like to have a listener in an OHLC Chart there I can listen about which candle the cursor at moment standing. This information I will set in a...

Currently the code is full of `System.out.println` statements. Some/most of them being commented out, some of them not. The industry standard practice is to employ a logging framework (log4j, commons-logging,...

Since XChart 3.3.0 the grid lines appear multiple times when customizing them with `AxesChartStyler.setPlotGridLinesStroke`. It can be reproduced using the small example program below: ```java package example; import java.awt.BasicStroke; import...