Skip to content
Snippets Groups Projects
Commit 19ab6cb2 authored by Lan Dam's avatar Lan Dam
Browse files

modify plot_functions' descriptions to make them clearer

parent 4bb44aef
No related branches found
No related tags found
1 merge request!70DB config dialogs
Pipeline #2242 passed with stage
in 4 minutes and 4 seconds
plot_functions = { plot_functions = {
'linesDots': ( 'linesDots': (
"Lines, one color dots. ", "Lines, one color dots. Dot or line/color mapping defined by "
"ValueColors with available colors: RYGMCW.\n"
"Ex: L:G|D:W\n"
" means Lines are plotted with color G\n"
" Dots are plotted with color W\n"
"If D is not defined, dots won't be displayed.\n"
"If L is not defined, lines will be plotted with color G",
"plot_lines_dots"), "plot_lines_dots"),
'linesSRate': ( 'linesSRate': (
"Lines, one color dots, bitweight info. ", "Lines, one color dots, bitweight info. ",
...@@ -12,18 +18,23 @@ plot_functions = { ...@@ -12,18 +18,23 @@ plot_functions = {
# ("mass position, multi-color, single line. "), # ("mass position, multi-color, single line. "),
# "plotDotsMasspos"), # "plotDotsMasspos"),
'dotForTime': ( 'dotForTime': (
"Dots according to timestamp. Color defined by valueColors. Ex: G", "Dots according to timestamp."
"Color defined by ValueColors with available colors: RYGMCW.\n"
"Ex: G",
"plot_time_dots"), "plot_time_dots"),
'multiColorDots': ( 'multiColorDots': (
("Multicolor dots with colors defined by valueColors. " ("Multicolor dots with value/colors mapping defined by "
"Value from low to high. " "ValueColors with available colors: RYGMCW.\n"
"Ex:*:W or -1:_|0:R|2.3:Y|+2.3:G. " "Value from low to high.\n"
"With colors: RYGMC: _: not plot"), "Ex: *:W\n"
" means all values represent by white dots."
"Ex: -1:_|0:R|2.3:Y|+2.3:G\n"
" in which '-1:_' means no plotting for value <-1"),
"plot_multi_color_dots" "plot_multi_color_dots"
), ),
'upDownDots': ( 'upDownDots': (
("Show data with 2 different values: first down/ second up. " ("Show data with 2 different values: first down/ second up. "
"With colors defined by valueColors. Ex: 1:R|0:Y"), "With colors defined by ValueColors.\nEx: 1:R|0:Y"),
'plot_up_down_dots' 'plot_up_down_dots'
) )
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment