silly script default adjustments because why not
This commit is contained in:
parent
69b3039976
commit
fc0d6d136d
1 changed files with 9 additions and 8 deletions
17
js/index.js
17
js/index.js
|
@ -1286,17 +1286,18 @@ function changeScript(evt) {
|
|||
}
|
||||
case "X/Y/Z plot": {
|
||||
scriptArgs.value =
|
||||
'[4, "5-30 [5]", 6, "2.5-12.5 [5]", 0, "", false, true, false, false]';
|
||||
'[3, "0.00-0.99 [4]", 4, "5-30 [4]", 6, "2.5-12.5 [4]", false, true, false, false]';
|
||||
scriptArgs.title =
|
||||
"Params:\nx_type (int): index of axis type (see below) //def: 4\n" +
|
||||
"x_values (mixed, str) //def: 5-30 [5]\n" +
|
||||
"y_type (int) //def: 5\n" +
|
||||
"y_values (mixed, str) //def: 2.5-12.5 [5]\n" +
|
||||
"z_type (int) //def: 0\n" +
|
||||
"z_values (mixed, str) //def: empty string\n" +
|
||||
"Params:\n" +
|
||||
"x_type (int): index of axis type (see below) //def: 3\n" +
|
||||
'x_values (mixed, str) //def: "0.00-0.99 [4]"\n' +
|
||||
"y_type (int) //def: 4\n" +
|
||||
'y_values (mixed, str) //def: "5-30 [4]"\n' +
|
||||
"z_type (int) //def: 5\n" +
|
||||
'z_values (mixed, str) //def: "2.5-12.5 [4]"\n' +
|
||||
"draw_legend (bool): return grid of all images //def: false\n" +
|
||||
"include_lone_images (bool): return individual images //def: true\n" +
|
||||
"include_subgrids (bool): return subgrids //def: false\n" +
|
||||
"include_subgrids (bool) //def: false\n" +
|
||||
"no_fixed_seeds (bool): use different seeds for each picture //def: false\n\n" +
|
||||
"Available axis types:\n" +
|
||||
"0: Nothing\n" +
|
||||
|
|
Loading…
Reference in a new issue