The different Stylers contain chart styling methods specific to the corresponding chart type as well as common styling methods common across all chart types.
...
...
@@ -173,10 +174,14 @@ Series render styles include: `Pie` and `Donut`.
`BubbleChart` charts take Date or Number data types for the X-Axis and Number data types for the Y-Axis. Number data types are taken for the bubble sizes.
`BubbleChart` charts take Date or Number data types for the X-Axis and Number data types for the Y-Axis and bubble sizes.
Series render styles include: `Round` and in the near future `Square`.
## Real-time Java Charts using XChart
The above image shows a real-time bubble chart. Real-time charts are as simple as calling `replaceData` on one or more series objects and triggering a redraw of the `JPanel` containing the chart. There are several real-time chart demos, all of which can be found here: <https://github.com/timmolter/XChart/tree/develop/xchart-demo/src/main/java/org/knowm/xchart/demo/charts/realtime>.
## Chart Customization
All the styling options can be found in one of two possible places: 1) the Chart's `Styler` or 2) the series' `set` methods. With this chart customization design, all customization options can be quickly "discovered" using an IDE's built in "Content Assist". With centralized styling like this, there is no need to hunt around the entire charting API to find that one customization you're looking for - it's all right in one spot!