Browse Source

Formular Grafikelemente laden aus JSON Export #5

viz_kern51
Daniel Quathamer 1 month ago
parent
commit
fc6fee0524
  1. 139
      src-modules/module/viz/schluesseltabellen/viz_type_plot_fuellen.sql

139
src-modules/module/viz/schluesseltabellen/viz_type_plot_fuellen.sql

@ -35,7 +35,6 @@
"orientation":"V", "orientation":"V",
"description":"Vertikales Boxplot"}, "description":"Vertikales Boxplot"},
,
{"uniquename":"text", "caption":"Wertelabel (vertikal)", {"uniquename":"text", "caption":"Wertelabel (vertikal)",
"orientation":"V", "orientation":"V",
"description":"Wertelabel für vertikales Diagramm"} "description":"Wertelabel für vertikales Diagramm"}
@ -217,6 +216,113 @@
/> />
<#assign viz_type_properties_general = [ <#assign viz_type_properties_general = [
{ "caption":"Textuelle Beschreibung des Grafikelements",
"prop_uniquename":"ariaDescription",
"explanation":"für barrierearme Grafiken",
"prop_default":"",
"prop_unit":"",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
},
{ "caption":"CSS-Klasse",
"prop_uniquename":"className",
"explanation":"Klassenname des Grafikelements für CSS-basierte Layouts",
"prop_default":"",
"prop_unit":"",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
}
,
{ "caption":"CSS-Filter für Bilder",
"prop_uniquename":"imageFilter",
"explanation":"z.B. blur(5px)",
"prop_default":"",
"prop_unit":"",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
},
{ "caption":"Offset (horizontal)",
"prop_uniquename":"dx",
"explanation":"Horizontales Offset des Grafikelements in Pixel",
"prop_default":"",
"prop_unit":"px",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"LAYOUT",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
},
{ "caption":"Offset (vertikal)",
"prop_uniquename":"dy",
"explanation":"Vertikales Offset des Grafikelements in Pixel",
"prop_default":"",
"prop_unit":"px",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"LAYOUT",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
},
{ "caption":"Deckungsgrad Farbe",
"prop_uniquename":"fillOpacity",
"explanation":"Deckungsrad (opacity) zwischen 0 und 1",
"prop_default":"",
"prop_unit":"",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"0",
"range_to":"1",
"prop_value_type":"STRING"
},
{ "caption":"Deckungsgrad Objekt",
"prop_uniquename":"opacity",
"explanation":"Deckungsrad (opacity) des Grafikelements zwischen 0 und 1",
"prop_default":"",
"prop_unit":"",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"0",
"range_to":"1",
"prop_value_type":"STRING"
},
{ "caption":"Strichlinie Abstand-Intervalle", { "caption":"Strichlinie Abstand-Intervalle",
"prop_uniquename":"strokeDasharray", "prop_uniquename":"strokeDasharray",
"explanation":"Abstand von Bindestrichen (Komma-separierte Pixel), z.B. [10,5] für 10 und dann 5 Pixel Abstand", "explanation":"Abstand von Bindestrichen (Komma-separierte Pixel), z.B. [10,5] für 10 und dann 5 Pixel Abstand",
@ -231,6 +337,37 @@
"range_from":"", "range_from":"",
"range_to":"", "range_to":"",
"prop_value_type":"STRING" "prop_value_type":"STRING"
},
{ "caption":"Strichlinie Breite",
"prop_uniquename":"strokeWidth",
"explanation":"Strichbreite in Pixel",
"prop_default":"",
"prop_unit":"px",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
}
,
{ "caption":"Tooltip einschalten",
"prop_uniquename":"tip",
"explanation":"Sollen implizite Tooltips angezeigt werden (true,false)",
"prop_default":"",
"prop_unit":"",
"is_generic":"0",
"static_values":"",
"is_mandatory":"0",
"input_type_uniquename":"TEXT",
"property_group_uniquename":"STYLE",
"sortnr":"",
"range_from":"",
"range_to":"",
"prop_value_type":"STRING"
} }
] /> ] />

Loading…
Cancel
Save