mirror of
https://github.com/Relintai/pandemonium_engine_easy_charts.git
synced 2024-11-14 10:17:24 +01:00
d46e099717
* Fixed ScatterChart to work like LineChart when are_values_columns is true * Fixed labeling spaguetti and added offset. * Fixed indentation to match GDScript style guide * Fix distances calculations Note that I removed the origin_at_zero conditional at calculate_coordinates because I already fix y_margin_min to 0 at structure_datas. * Add missing features to ScatterChart I added the missing features from LineChart to ScatterChart (like treshold and some properties) in preparation to creation of a Parent Class common to both. This way the changes can be traced easily. * Add BaseClass for Scatter and Line Charts * Changes to property_list getter * Rename ScatterChartBase.gd to scatter_chart_base.gd * Filenames changed to match GDscript Style Guide From Godot so it doesn't break the links. * Fixed some dependencies on chart and chart2D
57 lines
2.0 KiB
Plaintext
57 lines
2.0 KiB
Plaintext
[gd_scene load_steps=3 format=2]
|
|
|
|
[ext_resource path="res://addons/easy_charts/ScatterChart2D/scatter_chart2D.gd" type="Script" id=1]
|
|
[ext_resource path="res://addons/easy_charts/Utilities/Point/point_data.tscn" type="PackedScene" id=2]
|
|
|
|
|
|
|
|
[node name="ScatterChart2D" type="Node2D"]
|
|
script = ExtResource( 1 )
|
|
__meta__ = {
|
|
"_edit_group_": true,
|
|
"_editor_description_": "[ScatterChart2D] - General purpose node for Scatter Charts
|
|
|
|
A scatter plot (also called a scatterplot, scatter graph, scatter chart, scattergram, or scatter diagram)
|
|
is a type of plot or mathematical diagram using Cartesian coordinates to display values for typically two variables
|
|
for a set of data. If the points are coded (color/shape/size), one additional variable can be displayed.
|
|
The data are displayed as a collection of points, each having the value of one variable determining the position on
|
|
the horizontal axis and the value of the other variable determining the position on the vertical axis."
|
|
}
|
|
function_colors = [ "#1e1e1e", "#1e1e1e", "#1e1e1e", "#1e1e1e" ]
|
|
|
|
[node name="Grid" type="Node2D" parent="."]
|
|
|
|
[node name="VLine" type="Line2D" parent="Grid"]
|
|
points = PoolVector2Array( 0, 0, 0, 0 )
|
|
width = 1.0
|
|
default_color = Color( 0.792157, 0.792157, 0.792157, 1 )
|
|
|
|
[node name="HLine" type="Line2D" parent="Grid"]
|
|
points = PoolVector2Array( 0, 0, 0, 0 )
|
|
width = 1.0
|
|
default_color = Color( 0.792157, 0.792157, 0.792157, 1 )
|
|
|
|
[node name="Outlines" type="Line2D" parent="."]
|
|
points = PoolVector2Array( 0, 0, 2, 0, 2, 2, 0, 2, 0, 0 )
|
|
width = 2.0
|
|
default_color = Color( 0.117647, 0.117647, 0.117647, 1 )
|
|
|
|
[node name="Functions" type="Node2D" parent="."]
|
|
|
|
[node name="OutlinesTween" type="Tween" parent="."]
|
|
|
|
[node name="GridTween" type="Tween" parent="."]
|
|
|
|
[node name="PointTween" type="Tween" parent="."]
|
|
|
|
[node name="PointData" parent="." instance=ExtResource( 2 )]
|
|
|
|
[node name="PointData" parent="PointData" index="0"]
|
|
visible = false
|
|
margin_left = 71.2491
|
|
margin_top = -146.673
|
|
margin_right = 71.1131
|
|
margin_bottom = -145.873
|
|
|
|
[editable path="PointData"]
|