pandemonium_engine_easy_charts/README.md

60 lines
3.3 KiB
Markdown
Raw Normal View History

<p align="right">
2020-08-26 02:48:49 +02:00
<a href="https://discord.gg/KnJGY9S">
<img src="https://github.com/fenix-hub/ColoredBadges/blob/master/svg/social/discord.svg" alt="react" style="vertical-align:top; margin:6px 4px">
2020-08-26 02:48:49 +02:00
</a>
</p>
2021-03-26 16:54:53 +01:00
# Notice, plugin under refactoring
**This plugin is under refactoring an maintenance. The next official release will contain multiple updates and upgrades.**\
2021-03-26 16:55:24 +01:00
**If you encounter any bug, please contact me on Discord.**
2021-03-26 16:55:12 +01:00
2021-03-26 16:54:53 +01:00
2020-06-03 11:33:50 +02:00
<img src="addons/easy_charts/icon.png" align="left" width="64" height="64">
2020-05-14 13:49:46 +02:00
# Easy Charts
2021-01-17 00:48:15 +01:00
A library of Charts plotted in Control, 2D and 3D nodes to visualize general purpose datasets.
2021-02-21 19:02:29 +01:00
2020-05-14 02:01:23 +02:00
## How does it work?
2020-12-30 15:36:19 +01:00
There is a [WIKI](https://github.com/fenix-hub/godot-engine.easy-charts/wiki) with some tutorials, even if it is a work in progress.
2023-01-14 18:35:09 +01:00
You can also find practical examples in `addons/easy_charts/examples/`.
2020-05-14 13:38:21 +02:00
# Available Charts and when to use them
2020-05-30 01:42:58 +02:00
This library offers a set of charts for each main Godot Node:
2023-01-14 18:35:09 +01:00
- **Control Charts:** Fast Charts plotted in a Control Node. They offer basic Control properties, such as Margins, size inheritance and control. No animations, best suited for UIs that rely on Control Node structures.
- **2D Charts:** plotted in 2D Nodes. They offer additional tools, such as animations. They can be used to implement more aesthetic charts in 2D contexts. Compatibility not guaranteed in Canvas and Control nodes.
- **3D Charts:** Plotted using 3D nodes, but can be used both in 2D and 3D spaces. They offer the possibility to plot 3D datasets, which are common in machine learning contexts or just data analysis. A Camera Control will also be available, which can be used to move around the chart.
2020-12-31 17:45:50 +01:00
### Available Charts
2023-01-14 18:35:09 +01:00
| | Control | 2D | 3D |
|--------------|---------|----|----|
| ScatterChart | ✅ | ❌ | ❌ |
| LineChart | ✅ | ❌ | ❌ |
| ColumnChart | ❌ | ❌ | ❌ |
| AreaChart | ❌ | ❌ | ❌ |
| PieChart | ❌ | ❌ | ❌ |
| RadarChart | ❌ | ❌ | ❌ |
| BubbleChart | ❌ | ❌ | ❌ |
| DonutChart | ❌ | ❌ | ❌ |
| ParliamentChart | ❌ | ❌ | ❌ |
| SunburstChart | ❌ | ❌ | ❌ |
2020-05-14 13:46:12 +02:00
### Some Examples
2020-12-31 17:43:37 +01:00
![example_LineChart_realtime](imgs/real_time_line.gif)
2020-11-06 19:55:45 +01:00
![example_Piechart](imgs/pie_chart_realtime.gif)
2020-06-03 18:08:50 +02:00
![exampleradar](imgs/radar.png)
2020-05-20 02:08:41 +02:00
![example01](imgs/scatter.gif)
![example03](imgs/example03.gif)
2020-05-14 14:48:09 +02:00
##### Some references for charts and plots
2020-05-14 14:48:59 +02:00
[Flourish](https://app.flourish.studio/projects)
[Chart.js](https://www.chartjs.org/samples/latest/)
[Google Charts](https://developers.google.com/chart)
2023-01-14 18:35:09 +01:00
# ⚠️ Disclaimer
2020-05-14 02:01:23 +02:00
This addon was built for a **personal use** intention. It was released as an open source plugin in the hope that it could be useful to the Godot Engine Community.
As a "work in progress" project, there is *no warranty* for any eventual issue and bug that may broke your project.
I don't assume any responsibility for possible corruptions of your project. It is always advisable to keep a copy of your project and check any changes you make in your Github repository.
-----------------
> This text file was created via [TextEditor Integration](https://github.com/fenix-hub/godot-engine.text-editor) inside Godot Engine's Editor.
2020-05-30 01:42:58 +02:00
> This text file was pushed via [GitHub Integration](https://github.com/fenix-hub/godot-engine.github-integretion) inside Godot Engine's Editor.