mirror of
https://github.com/Relintai/pandemonium_engine_easy_charts.git
synced 2024-11-14 10:17:24 +01:00
refactor: use # for docstring instaed of """
This commit is contained in:
parent
9c1f6d4f3b
commit
be5afb4689
@ -1,19 +1,17 @@
|
||||
tool
|
||||
extends Chart2D
|
||||
|
||||
"""
|
||||
[Linechart2D] - General purpose node for Line Charts
|
||||
A line chart or line plot or line graph or curve chart is a type of chart which
|
||||
displays information as a series of data points called 'markers'
|
||||
connected by straight line segments.
|
||||
It is a basic type of chart common in many fields. It is similar to a scatter plot
|
||||
except that the measurement points are ordered (typically by their x-axis value)
|
||||
and joined with straight line segments.
|
||||
A line chart is often used to visualize a trend in data over intervals of time –
|
||||
a time series – thus the line is often drawn chronologically.
|
||||
In these cases they are known as run charts.
|
||||
/ source: Wikipedia /
|
||||
"""
|
||||
# [Linechart2D] - General purpose node for Line Charts
|
||||
# A line chart or line plot or line graph or curve chart is a type of chart which
|
||||
# displays information as a series of data points called 'markers'
|
||||
# connected by straight line segments.
|
||||
# It is a basic type of chart common in many fields. It is similar to a scatter plot
|
||||
# except that the measurement points are ordered (typically by their x-axis value)
|
||||
# and joined with straight line segments.
|
||||
# A line chart is often used to visualize a trend in data over intervals of time –
|
||||
# a time series – thus the line is often drawn chronologically.
|
||||
# In these cases they are known as run charts.
|
||||
# Source: Wikipedia
|
||||
|
||||
|
||||
var OutlinesTween: Tween
|
||||
|
Loading…
Reference in New Issue
Block a user