mol_plot_all 1.2.1184 → 1.2.1186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.d.ts +90 -90
- package/node.deps.json +1 -1
- package/node.js +118 -118
- package/node.js.map +1 -1
- package/node.mjs +118 -118
- package/node.test.js +118 -118
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +90 -90
- package/web.deps.json +1 -1
- package/web.js +118 -118
- package/web.js.map +1 -1
- package/web.mjs +118 -118
package/node.test.js
CHANGED
|
@@ -3344,8 +3344,8 @@ var $;
|
|
|
3344
3344
|
attr(){
|
|
3345
3345
|
return {
|
|
3346
3346
|
...(super.attr()),
|
|
3347
|
-
"viewBox": (this
|
|
3348
|
-
"preserveAspectRatio": (this
|
|
3347
|
+
"viewBox": (this.view_box()),
|
|
3348
|
+
"preserveAspectRatio": (this.aspect())
|
|
3349
3349
|
};
|
|
3350
3350
|
}
|
|
3351
3351
|
};
|
|
@@ -3619,11 +3619,11 @@ var $;
|
|
|
3619
3619
|
event(){
|
|
3620
3620
|
return {
|
|
3621
3621
|
...(super.event()),
|
|
3622
|
-
"pointerdown": (next) => (this
|
|
3623
|
-
"pointermove": (next) => (this
|
|
3624
|
-
"pointerup": (next) => (this
|
|
3625
|
-
"pointerleave": (next) => (this
|
|
3626
|
-
"wheel": (next) => (this
|
|
3622
|
+
"pointerdown": (next) => (this.event_start(next)),
|
|
3623
|
+
"pointermove": (next) => (this.event_move(next)),
|
|
3624
|
+
"pointerup": (next) => (this.event_end(next)),
|
|
3625
|
+
"pointerleave": (next) => (this.event_leave(next)),
|
|
3626
|
+
"wheel": (next) => (this.event_wheel(next))
|
|
3627
3627
|
};
|
|
3628
3628
|
}
|
|
3629
3629
|
};
|
|
@@ -3913,11 +3913,11 @@ var $;
|
|
|
3913
3913
|
;
|
|
3914
3914
|
($.$mol_plot_pane) = class $mol_plot_pane extends ($.$mol_svg_root) {
|
|
3915
3915
|
gap_x(){
|
|
3916
|
-
const obj = new this.$.$mol_vector_range((this
|
|
3916
|
+
const obj = new this.$.$mol_vector_range((this.gap_left()), (this.gap_right()));
|
|
3917
3917
|
return obj;
|
|
3918
3918
|
}
|
|
3919
3919
|
gap_y(){
|
|
3920
|
-
const obj = new this.$.$mol_vector_range((this
|
|
3920
|
+
const obj = new this.$.$mol_vector_range((this.gap_bottom()), (this.gap_top()));
|
|
3921
3921
|
return obj;
|
|
3922
3922
|
}
|
|
3923
3923
|
shift_limit_x(){
|
|
@@ -3959,17 +3959,17 @@ var $;
|
|
|
3959
3959
|
return [];
|
|
3960
3960
|
}
|
|
3961
3961
|
graphs_positioned(){
|
|
3962
|
-
return (this
|
|
3962
|
+
return (this.graphs());
|
|
3963
3963
|
}
|
|
3964
3964
|
graphs_visible(){
|
|
3965
|
-
return (this
|
|
3965
|
+
return (this.graphs_positioned());
|
|
3966
3966
|
}
|
|
3967
3967
|
zoom(next){
|
|
3968
3968
|
if(next !== undefined) return next;
|
|
3969
3969
|
return 1;
|
|
3970
3970
|
}
|
|
3971
3971
|
cursor_position(){
|
|
3972
|
-
return (this
|
|
3972
|
+
return (this.Touch().pointer_center());
|
|
3973
3973
|
}
|
|
3974
3974
|
allow_draw(){
|
|
3975
3975
|
return true;
|
|
@@ -3981,10 +3981,10 @@ var $;
|
|
|
3981
3981
|
return true;
|
|
3982
3982
|
}
|
|
3983
3983
|
action_type(){
|
|
3984
|
-
return (this
|
|
3984
|
+
return (this.Touch().action_type());
|
|
3985
3985
|
}
|
|
3986
3986
|
action_point(){
|
|
3987
|
-
return (this
|
|
3987
|
+
return (this.Touch().action_point());
|
|
3988
3988
|
}
|
|
3989
3989
|
draw_start(next){
|
|
3990
3990
|
if(next !== undefined) return next;
|
|
@@ -4000,14 +4000,14 @@ var $;
|
|
|
4000
4000
|
}
|
|
4001
4001
|
Touch(){
|
|
4002
4002
|
const obj = new this.$.$mol_touch();
|
|
4003
|
-
(obj.zoom) = (next) => ((this
|
|
4004
|
-
(obj.pan) = (next) => ((this
|
|
4005
|
-
(obj.allow_draw) = () => ((this
|
|
4006
|
-
(obj.allow_pan) = () => ((this
|
|
4007
|
-
(obj.allow_zoom) = () => ((this
|
|
4008
|
-
(obj.draw_start) = (next) => ((this
|
|
4009
|
-
(obj.draw) = (next) => ((this
|
|
4010
|
-
(obj.draw_end) = (next) => ((this
|
|
4003
|
+
(obj.zoom) = (next) => ((this.zoom(next)));
|
|
4004
|
+
(obj.pan) = (next) => ((this.shift(next)));
|
|
4005
|
+
(obj.allow_draw) = () => ((this.allow_draw()));
|
|
4006
|
+
(obj.allow_pan) = () => ((this.allow_pan()));
|
|
4007
|
+
(obj.allow_zoom) = () => ((this.allow_zoom()));
|
|
4008
|
+
(obj.draw_start) = (next) => ((this.draw_start(next)));
|
|
4009
|
+
(obj.draw) = (next) => ((this.draw(next)));
|
|
4010
|
+
(obj.draw_end) = (next) => ((this.draw_end(next)));
|
|
4011
4011
|
return obj;
|
|
4012
4012
|
}
|
|
4013
4013
|
aspect(){
|
|
@@ -4028,23 +4028,23 @@ var $;
|
|
|
4028
4028
|
return 24;
|
|
4029
4029
|
}
|
|
4030
4030
|
gap_left(){
|
|
4031
|
-
return (this
|
|
4031
|
+
return (this.gap_hor());
|
|
4032
4032
|
}
|
|
4033
4033
|
gap_right(){
|
|
4034
|
-
return (this
|
|
4034
|
+
return (this.gap_hor());
|
|
4035
4035
|
}
|
|
4036
4036
|
gap_top(){
|
|
4037
|
-
return (this
|
|
4037
|
+
return (this.gap_vert());
|
|
4038
4038
|
}
|
|
4039
4039
|
gap_bottom(){
|
|
4040
|
-
return (this
|
|
4040
|
+
return (this.gap_vert());
|
|
4041
4041
|
}
|
|
4042
4042
|
gap(){
|
|
4043
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4043
|
+
const obj = new this.$.$mol_vector_2d((this.gap_x()), (this.gap_y()));
|
|
4044
4044
|
return obj;
|
|
4045
4045
|
}
|
|
4046
4046
|
shift_limit(){
|
|
4047
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4047
|
+
const obj = new this.$.$mol_vector_2d((this.shift_limit_x()), (this.shift_limit_y()));
|
|
4048
4048
|
return obj;
|
|
4049
4049
|
}
|
|
4050
4050
|
shift_default(){
|
|
@@ -4057,7 +4057,7 @@ var $;
|
|
|
4057
4057
|
return obj;
|
|
4058
4058
|
}
|
|
4059
4059
|
scale_limit(){
|
|
4060
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4060
|
+
const obj = new this.$.$mol_vector_2d((this.scale_limit_x()), (this.scale_limit_y()));
|
|
4061
4061
|
return obj;
|
|
4062
4062
|
}
|
|
4063
4063
|
scale_default(){
|
|
@@ -4086,21 +4086,21 @@ var $;
|
|
|
4086
4086
|
return obj;
|
|
4087
4087
|
}
|
|
4088
4088
|
dimensions(){
|
|
4089
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4089
|
+
const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
|
|
4090
4090
|
return obj;
|
|
4091
4091
|
}
|
|
4092
4092
|
dimensions_viewport(){
|
|
4093
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4093
|
+
const obj = new this.$.$mol_vector_2d((this.dimensions_viewport_x()), (this.dimensions_viewport_y()));
|
|
4094
4094
|
return obj;
|
|
4095
4095
|
}
|
|
4096
4096
|
sub(){
|
|
4097
|
-
return (this
|
|
4097
|
+
return (this.graphs_sorted());
|
|
4098
4098
|
}
|
|
4099
4099
|
graphs_colored(){
|
|
4100
|
-
return (this
|
|
4100
|
+
return (this.graphs_visible());
|
|
4101
4101
|
}
|
|
4102
4102
|
plugins(){
|
|
4103
|
-
return [...(super.plugins()), (this
|
|
4103
|
+
return [...(super.plugins()), (this.Touch())];
|
|
4104
4104
|
}
|
|
4105
4105
|
};
|
|
4106
4106
|
($mol_mem(($.$mol_plot_pane.prototype), "gap_x"));
|
|
@@ -4159,7 +4159,7 @@ var $;
|
|
|
4159
4159
|
return "title";
|
|
4160
4160
|
}
|
|
4161
4161
|
sub(){
|
|
4162
|
-
return [(this
|
|
4162
|
+
return [(this.title())];
|
|
4163
4163
|
}
|
|
4164
4164
|
};
|
|
4165
4165
|
|
|
@@ -4211,7 +4211,7 @@ var $;
|
|
|
4211
4211
|
return "";
|
|
4212
4212
|
}
|
|
4213
4213
|
hint(){
|
|
4214
|
-
return (this
|
|
4214
|
+
return (this.title());
|
|
4215
4215
|
}
|
|
4216
4216
|
series_x(){
|
|
4217
4217
|
return [];
|
|
@@ -4220,13 +4220,13 @@ var $;
|
|
|
4220
4220
|
return [];
|
|
4221
4221
|
}
|
|
4222
4222
|
attr(){
|
|
4223
|
-
return {...(super.attr()), "mol_plot_graph_type": (this
|
|
4223
|
+
return {...(super.attr()), "mol_plot_graph_type": (this.type())};
|
|
4224
4224
|
}
|
|
4225
4225
|
style(){
|
|
4226
|
-
return {...(super.style()), "color": (this
|
|
4226
|
+
return {...(super.style()), "color": (this.color())};
|
|
4227
4227
|
}
|
|
4228
4228
|
viewport(){
|
|
4229
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4229
|
+
const obj = new this.$.$mol_vector_2d((this.viewport_x()), (this.viewport_y()));
|
|
4230
4230
|
return obj;
|
|
4231
4231
|
}
|
|
4232
4232
|
shift(){
|
|
@@ -4240,11 +4240,11 @@ var $;
|
|
|
4240
4240
|
return obj;
|
|
4241
4241
|
}
|
|
4242
4242
|
dimensions_pane(){
|
|
4243
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4243
|
+
const obj = new this.$.$mol_vector_2d((this.dimensions_pane_x()), (this.dimensions_pane_y()));
|
|
4244
4244
|
return obj;
|
|
4245
4245
|
}
|
|
4246
4246
|
dimensions(){
|
|
4247
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4247
|
+
const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
|
|
4248
4248
|
return obj;
|
|
4249
4249
|
}
|
|
4250
4250
|
size_real(){
|
|
@@ -4252,7 +4252,7 @@ var $;
|
|
|
4252
4252
|
return obj;
|
|
4253
4253
|
}
|
|
4254
4254
|
gap(){
|
|
4255
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
4255
|
+
const obj = new this.$.$mol_vector_2d((this.gap_x()), (this.gap_y()));
|
|
4256
4256
|
return obj;
|
|
4257
4257
|
}
|
|
4258
4258
|
repos_x(id){
|
|
@@ -4275,7 +4275,7 @@ var $;
|
|
|
4275
4275
|
}
|
|
4276
4276
|
Hint(){
|
|
4277
4277
|
const obj = new this.$.$mol_svg_title();
|
|
4278
|
-
(obj.title) = () => ((this
|
|
4278
|
+
(obj.title) = () => ((this.hint()));
|
|
4279
4279
|
return obj;
|
|
4280
4280
|
}
|
|
4281
4281
|
hue(next){
|
|
@@ -4310,10 +4310,10 @@ var $;
|
|
|
4310
4310
|
return "black";
|
|
4311
4311
|
}
|
|
4312
4312
|
attr(){
|
|
4313
|
-
return {...(super.attr()), "mol_plot_graph_type": (this
|
|
4313
|
+
return {...(super.attr()), "mol_plot_graph_type": (this.type())};
|
|
4314
4314
|
}
|
|
4315
4315
|
style(){
|
|
4316
|
-
return {...(super.style()), "color": (this
|
|
4316
|
+
return {...(super.style()), "color": (this.color())};
|
|
4317
4317
|
}
|
|
4318
4318
|
};
|
|
4319
4319
|
|
|
@@ -4631,15 +4631,15 @@ var $;
|
|
|
4631
4631
|
return "path";
|
|
4632
4632
|
}
|
|
4633
4633
|
attr(){
|
|
4634
|
-
return {...(super.attr()), "d": (this
|
|
4634
|
+
return {...(super.attr()), "d": (this.curve())};
|
|
4635
4635
|
}
|
|
4636
4636
|
sub(){
|
|
4637
|
-
return [(this
|
|
4637
|
+
return [(this.Hint())];
|
|
4638
4638
|
}
|
|
4639
4639
|
Sample(){
|
|
4640
4640
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4641
|
-
(obj.color) = () => ((this
|
|
4642
|
-
(obj.type) = () => ((this
|
|
4641
|
+
(obj.color) = () => ((this.color()));
|
|
4642
|
+
(obj.type) = () => ((this.type()));
|
|
4643
4643
|
return obj;
|
|
4644
4644
|
}
|
|
4645
4645
|
};
|
|
@@ -4721,17 +4721,17 @@ var $;
|
|
|
4721
4721
|
return [];
|
|
4722
4722
|
}
|
|
4723
4723
|
graphs_enriched(){
|
|
4724
|
-
return (this
|
|
4724
|
+
return (this.graphs());
|
|
4725
4725
|
}
|
|
4726
4726
|
graph_samples(){
|
|
4727
4727
|
return [];
|
|
4728
4728
|
}
|
|
4729
4729
|
sub(){
|
|
4730
|
-
return (this
|
|
4730
|
+
return (this.graphs_enriched());
|
|
4731
4731
|
}
|
|
4732
4732
|
Sample(){
|
|
4733
4733
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4734
|
-
(obj.sub) = () => ((this
|
|
4734
|
+
(obj.sub) = () => ((this.graph_samples()));
|
|
4735
4735
|
return obj;
|
|
4736
4736
|
}
|
|
4737
4737
|
};
|
|
@@ -4815,7 +4815,7 @@ var $;
|
|
|
4815
4815
|
return "path";
|
|
4816
4816
|
}
|
|
4817
4817
|
attr(){
|
|
4818
|
-
return {...(super.attr()), "d": (this
|
|
4818
|
+
return {...(super.attr()), "d": (this.geometry())};
|
|
4819
4819
|
}
|
|
4820
4820
|
};
|
|
4821
4821
|
|
|
@@ -4833,7 +4833,7 @@ var $;
|
|
|
4833
4833
|
}
|
|
4834
4834
|
Curve(){
|
|
4835
4835
|
const obj = new this.$.$mol_svg_path();
|
|
4836
|
-
(obj.geometry) = () => ((this
|
|
4836
|
+
(obj.geometry) = () => ((this.curve()));
|
|
4837
4837
|
return obj;
|
|
4838
4838
|
}
|
|
4839
4839
|
points_max(){
|
|
@@ -4843,14 +4843,14 @@ var $;
|
|
|
4843
4843
|
return 1;
|
|
4844
4844
|
}
|
|
4845
4845
|
style(){
|
|
4846
|
-
return {...(super.style()), "stroke-width": (this
|
|
4846
|
+
return {...(super.style()), "stroke-width": (this.diameter())};
|
|
4847
4847
|
}
|
|
4848
4848
|
sub(){
|
|
4849
|
-
return [(this
|
|
4849
|
+
return [(this.Hint()), (this.Curve())];
|
|
4850
4850
|
}
|
|
4851
4851
|
Sample(){
|
|
4852
4852
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
4853
|
-
(obj.color) = () => ((this
|
|
4853
|
+
(obj.color) = () => ((this.color()));
|
|
4854
4854
|
return obj;
|
|
4855
4855
|
}
|
|
4856
4856
|
};
|
|
@@ -4996,20 +4996,20 @@ var $;
|
|
|
4996
4996
|
return [];
|
|
4997
4997
|
}
|
|
4998
4998
|
graphs(){
|
|
4999
|
-
return (this
|
|
4999
|
+
return (this.level_graphs());
|
|
5000
5000
|
}
|
|
5001
5001
|
Level(id){
|
|
5002
5002
|
const obj = new this.$.$mol_plot_map_heat_level();
|
|
5003
|
-
(obj.hint) = () => ((this
|
|
5004
|
-
(obj.points) = () => ((this
|
|
5005
|
-
(obj.opacity) = () => ((this
|
|
5006
|
-
(obj.diameter) = () => ((this
|
|
5007
|
-
(obj.aspect) = () => ((this
|
|
5003
|
+
(obj.hint) = () => ((this.level_hint(id)));
|
|
5004
|
+
(obj.points) = () => ((this.level_points(id)));
|
|
5005
|
+
(obj.opacity) = () => ((this.level_opacity(id)));
|
|
5006
|
+
(obj.diameter) = () => ((this.level_diameter()));
|
|
5007
|
+
(obj.aspect) = () => ((this.level_aspect()));
|
|
5008
5008
|
return obj;
|
|
5009
5009
|
}
|
|
5010
5010
|
Sample(){
|
|
5011
5011
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
5012
|
-
(obj.color) = () => ((this
|
|
5012
|
+
(obj.color) = () => ((this.color()));
|
|
5013
5013
|
return obj;
|
|
5014
5014
|
}
|
|
5015
5015
|
};
|
|
@@ -5020,7 +5020,7 @@ var $;
|
|
|
5020
5020
|
return "1";
|
|
5021
5021
|
}
|
|
5022
5022
|
style(){
|
|
5023
|
-
return {...(super.style()), "opacity": (this
|
|
5023
|
+
return {...(super.style()), "opacity": (this.opacity())};
|
|
5024
5024
|
}
|
|
5025
5025
|
};
|
|
5026
5026
|
|
|
@@ -5108,18 +5108,18 @@ var $;
|
|
|
5108
5108
|
}
|
|
5109
5109
|
Curve(){
|
|
5110
5110
|
const obj = new this.$.$mol_svg_path();
|
|
5111
|
-
(obj.geometry) = () => ((this
|
|
5111
|
+
(obj.geometry) = () => ((this.curve()));
|
|
5112
5112
|
return obj;
|
|
5113
5113
|
}
|
|
5114
5114
|
style(){
|
|
5115
|
-
return {...(super.style()), "stroke-width": (this
|
|
5115
|
+
return {...(super.style()), "stroke-width": (this.stroke_width())};
|
|
5116
5116
|
}
|
|
5117
5117
|
sub(){
|
|
5118
|
-
return [(this
|
|
5118
|
+
return [(this.Hint()), (this.Curve())];
|
|
5119
5119
|
}
|
|
5120
5120
|
Sample(){
|
|
5121
5121
|
const obj = new this.$.$mol_plot_graph_sample();
|
|
5122
|
-
(obj.color) = () => ((this
|
|
5122
|
+
(obj.color) = () => ((this.color()));
|
|
5123
5123
|
return obj;
|
|
5124
5124
|
}
|
|
5125
5125
|
};
|
|
@@ -5286,10 +5286,10 @@ var $;
|
|
|
5286
5286
|
attr(){
|
|
5287
5287
|
return {
|
|
5288
5288
|
...(super.attr()),
|
|
5289
|
-
"width": (this
|
|
5290
|
-
"height": (this
|
|
5291
|
-
"x": (this
|
|
5292
|
-
"y": (this
|
|
5289
|
+
"width": (this.width()),
|
|
5290
|
+
"height": (this.height()),
|
|
5291
|
+
"x": (this.pos_x()),
|
|
5292
|
+
"y": (this.pos_y())
|
|
5293
5293
|
};
|
|
5294
5294
|
}
|
|
5295
5295
|
};
|
|
@@ -5328,7 +5328,7 @@ var $;
|
|
|
5328
5328
|
return "middle";
|
|
5329
5329
|
}
|
|
5330
5330
|
align_hor(){
|
|
5331
|
-
return (this
|
|
5331
|
+
return (this.align());
|
|
5332
5332
|
}
|
|
5333
5333
|
align_vert(){
|
|
5334
5334
|
return "baseline";
|
|
@@ -5345,14 +5345,14 @@ var $;
|
|
|
5345
5345
|
attr(){
|
|
5346
5346
|
return {
|
|
5347
5347
|
...(super.attr()),
|
|
5348
|
-
"x": (this
|
|
5349
|
-
"y": (this
|
|
5350
|
-
"text-anchor": (this
|
|
5351
|
-
"alignment-baseline": (this
|
|
5348
|
+
"x": (this.pos_x()),
|
|
5349
|
+
"y": (this.pos_y()),
|
|
5350
|
+
"text-anchor": (this.align_hor()),
|
|
5351
|
+
"alignment-baseline": (this.align_vert())
|
|
5352
5352
|
};
|
|
5353
5353
|
}
|
|
5354
5354
|
sub(){
|
|
5355
|
-
return [(this
|
|
5355
|
+
return [(this.text())];
|
|
5356
5356
|
}
|
|
5357
5357
|
};
|
|
5358
5358
|
|
|
@@ -5401,10 +5401,10 @@ var $;
|
|
|
5401
5401
|
}
|
|
5402
5402
|
Background(){
|
|
5403
5403
|
const obj = new this.$.$mol_svg_rect();
|
|
5404
|
-
(obj.pos_x) = () => ((this
|
|
5405
|
-
(obj.pos_y) = () => ((this
|
|
5406
|
-
(obj.width) = () => ((this
|
|
5407
|
-
(obj.height) = () => ((this
|
|
5404
|
+
(obj.pos_x) = () => ((this.background_x()));
|
|
5405
|
+
(obj.pos_y) = () => ((this.background_y()));
|
|
5406
|
+
(obj.width) = () => ((this.background_width()));
|
|
5407
|
+
(obj.height) = () => ((this.background_height()));
|
|
5408
5408
|
return obj;
|
|
5409
5409
|
}
|
|
5410
5410
|
curve(){
|
|
@@ -5412,7 +5412,7 @@ var $;
|
|
|
5412
5412
|
}
|
|
5413
5413
|
Curve(){
|
|
5414
5414
|
const obj = new this.$.$mol_svg_path();
|
|
5415
|
-
(obj.geometry) = () => ((this
|
|
5415
|
+
(obj.geometry) = () => ((this.curve()));
|
|
5416
5416
|
return obj;
|
|
5417
5417
|
}
|
|
5418
5418
|
labels_formatted(){
|
|
@@ -5429,10 +5429,10 @@ var $;
|
|
|
5429
5429
|
}
|
|
5430
5430
|
Title(){
|
|
5431
5431
|
const obj = new this.$.$mol_svg_text();
|
|
5432
|
-
(obj.pos_x) = () => ((this
|
|
5433
|
-
(obj.pos_y) = () => ((this
|
|
5434
|
-
(obj.align) = () => ((this
|
|
5435
|
-
(obj.text) = () => ((this
|
|
5432
|
+
(obj.pos_x) = () => ((this.title_pos_x()));
|
|
5433
|
+
(obj.pos_y) = () => ((this.title_pos_y()));
|
|
5434
|
+
(obj.align) = () => ((this.title_align()));
|
|
5435
|
+
(obj.text) = () => ((this.title()));
|
|
5436
5436
|
return obj;
|
|
5437
5437
|
}
|
|
5438
5438
|
label_pos_x(id){
|
|
@@ -5442,7 +5442,7 @@ var $;
|
|
|
5442
5442
|
return "";
|
|
5443
5443
|
}
|
|
5444
5444
|
label_pos(id){
|
|
5445
|
-
return [(this
|
|
5445
|
+
return [(this.label_pos_x(id)), (this.label_pos_y(id))];
|
|
5446
5446
|
}
|
|
5447
5447
|
label_text(id){
|
|
5448
5448
|
return "";
|
|
@@ -5482,17 +5482,17 @@ var $;
|
|
|
5482
5482
|
}
|
|
5483
5483
|
sub(){
|
|
5484
5484
|
return [
|
|
5485
|
-
(this
|
|
5486
|
-
(this
|
|
5487
|
-
(this
|
|
5488
|
-
(this
|
|
5485
|
+
(this.Background()),
|
|
5486
|
+
(this.Curve()),
|
|
5487
|
+
(this.labels_formatted()),
|
|
5488
|
+
(this.Title())
|
|
5489
5489
|
];
|
|
5490
5490
|
}
|
|
5491
5491
|
Label(id){
|
|
5492
5492
|
const obj = new this.$.$mol_svg_text();
|
|
5493
|
-
(obj.pos) = () => ((this
|
|
5494
|
-
(obj.text) = () => ((this
|
|
5495
|
-
(obj.align) = () => ((this
|
|
5493
|
+
(obj.pos) = () => ((this.label_pos(id)));
|
|
5494
|
+
(obj.text) = () => ((this.label_text(id)));
|
|
5495
|
+
(obj.align) = () => ((this.label_align()));
|
|
5496
5496
|
return obj;
|
|
5497
5497
|
}
|
|
5498
5498
|
};
|
|
@@ -5631,13 +5631,13 @@ var $;
|
|
|
5631
5631
|
return "14";
|
|
5632
5632
|
}
|
|
5633
5633
|
label_pos_x(id){
|
|
5634
|
-
return (this
|
|
5634
|
+
return (this.title_pos_x());
|
|
5635
5635
|
}
|
|
5636
5636
|
background_height(){
|
|
5637
5637
|
return "100%";
|
|
5638
5638
|
}
|
|
5639
5639
|
background_width(){
|
|
5640
|
-
return (this
|
|
5640
|
+
return (this.title_pos_x());
|
|
5641
5641
|
}
|
|
5642
5642
|
};
|
|
5643
5643
|
|
|
@@ -5709,7 +5709,7 @@ var $;
|
|
|
5709
5709
|
return "100%";
|
|
5710
5710
|
}
|
|
5711
5711
|
label_pos_y(id){
|
|
5712
|
-
return (this
|
|
5712
|
+
return (this.title_pos_y());
|
|
5713
5713
|
}
|
|
5714
5714
|
background_width(){
|
|
5715
5715
|
return "100%";
|
|
@@ -5784,16 +5784,16 @@ var $;
|
|
|
5784
5784
|
return "1rem";
|
|
5785
5785
|
}
|
|
5786
5786
|
box_pos_x(){
|
|
5787
|
-
return (this
|
|
5787
|
+
return (this.pos_x());
|
|
5788
5788
|
}
|
|
5789
5789
|
box_pos_y(){
|
|
5790
5790
|
return "0";
|
|
5791
5791
|
}
|
|
5792
5792
|
Back(){
|
|
5793
5793
|
const obj = new this.$.$mol_svg_rect();
|
|
5794
|
-
(obj.width) = () => ((this
|
|
5795
|
-
(obj.height) = () => ((this
|
|
5796
|
-
(obj.pos) = () => ([(this
|
|
5794
|
+
(obj.width) = () => ((this.box_width()));
|
|
5795
|
+
(obj.height) = () => ((this.box_height()));
|
|
5796
|
+
(obj.pos) = () => ([(this.box_pos_x()), (this.box_pos_y())]);
|
|
5797
5797
|
return obj;
|
|
5798
5798
|
}
|
|
5799
5799
|
pos_x(){
|
|
@@ -5810,9 +5810,9 @@ var $;
|
|
|
5810
5810
|
}
|
|
5811
5811
|
Text(){
|
|
5812
5812
|
const obj = new this.$.$mol_svg_text();
|
|
5813
|
-
(obj.pos) = () => ([(this
|
|
5814
|
-
(obj.align) = () => ((this
|
|
5815
|
-
(obj.sub) = () => ([(this
|
|
5813
|
+
(obj.pos) = () => ([(this.pos_x()), (this.pos_y())]);
|
|
5814
|
+
(obj.align) = () => ((this.align()));
|
|
5815
|
+
(obj.sub) = () => ([(this.text())]);
|
|
5816
5816
|
return obj;
|
|
5817
5817
|
}
|
|
5818
5818
|
font_size(){
|
|
@@ -5822,7 +5822,7 @@ var $;
|
|
|
5822
5822
|
return 0;
|
|
5823
5823
|
}
|
|
5824
5824
|
sub(){
|
|
5825
|
-
return [(this
|
|
5825
|
+
return [(this.Back()), (this.Text())];
|
|
5826
5826
|
}
|
|
5827
5827
|
};
|
|
5828
5828
|
($mol_mem(($.$mol_svg_text_box.prototype), "Back"));
|
|
@@ -5911,7 +5911,7 @@ var $;
|
|
|
5911
5911
|
}
|
|
5912
5912
|
Curve(){
|
|
5913
5913
|
const obj = new this.$.$mol_svg_path();
|
|
5914
|
-
(obj.geometry) = () => ((this
|
|
5914
|
+
(obj.geometry) = () => ((this.curve()));
|
|
5915
5915
|
return obj;
|
|
5916
5916
|
}
|
|
5917
5917
|
title_x_pos_x(){
|
|
@@ -5925,9 +5925,9 @@ var $;
|
|
|
5925
5925
|
}
|
|
5926
5926
|
Label_x(){
|
|
5927
5927
|
const obj = new this.$.$mol_svg_text_box();
|
|
5928
|
-
(obj.pos_x) = () => ((this
|
|
5929
|
-
(obj.pos_y) = () => ((this
|
|
5930
|
-
(obj.text) = () => ((this
|
|
5928
|
+
(obj.pos_x) = () => ((this.title_x_pos_x()));
|
|
5929
|
+
(obj.pos_y) = () => ((this.title_x_pos_y()));
|
|
5930
|
+
(obj.text) = () => ((this.title_x()));
|
|
5931
5931
|
return obj;
|
|
5932
5932
|
}
|
|
5933
5933
|
title_y_pos_x(){
|
|
@@ -5941,9 +5941,9 @@ var $;
|
|
|
5941
5941
|
}
|
|
5942
5942
|
Label_y(){
|
|
5943
5943
|
const obj = new this.$.$mol_svg_text_box();
|
|
5944
|
-
(obj.pos_x) = () => ((this
|
|
5945
|
-
(obj.pos_y) = () => ((this
|
|
5946
|
-
(obj.text) = () => ((this
|
|
5944
|
+
(obj.pos_x) = () => ((this.title_y_pos_x()));
|
|
5945
|
+
(obj.pos_y) = () => ((this.title_y_pos_y()));
|
|
5946
|
+
(obj.text) = () => ((this.title_y()));
|
|
5947
5947
|
return obj;
|
|
5948
5948
|
}
|
|
5949
5949
|
labels(){
|
|
@@ -5962,14 +5962,14 @@ var $;
|
|
|
5962
5962
|
return [];
|
|
5963
5963
|
}
|
|
5964
5964
|
dimensions(){
|
|
5965
|
-
const obj = new this.$.$mol_vector_2d((this
|
|
5965
|
+
const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
|
|
5966
5966
|
return obj;
|
|
5967
5967
|
}
|
|
5968
5968
|
sub(){
|
|
5969
5969
|
return [
|
|
5970
|
-
(this
|
|
5971
|
-
(this
|
|
5972
|
-
(this
|
|
5970
|
+
(this.Curve()),
|
|
5971
|
+
(this.Label_x()),
|
|
5972
|
+
(this.Label_y())
|
|
5973
5973
|
];
|
|
5974
5974
|
}
|
|
5975
5975
|
};
|