Visualisierungsmodul für SuperX
				http://www.superx-projekt.de/doku/viz_modul/
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							1081 lines
						
					
					
						
							68 KiB
						
					
					
				
			
		
		
	
	
							1081 lines
						
					
					
						
							68 KiB
						
					
					
				<!DOCTYPE html | 
						|
  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> | 
						|
<html xmlns:HtmlUtils="de.superx.util.HtmlUtils"> | 
						|
   <head> | 
						|
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 
						|
      <link rel="stylesheet" type="text/css" href="../style/superx.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../xml/menue_html.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../xml/superxml_html.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../xml/maske_html.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../xml/tabelle_html.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../xml/css/fontello-codes.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../xml/css/start_portlet.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../style/bulma.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../style/bulma-tooltip.min.css"> | 
						|
      <link rel="stylesheet" type="text/css" href="../style/sx_viz_muster.css"> | 
						|
   </head><style type="text/css"> | 
						|
.dojoDialog {background : #eee;	border : 1px solid #999;-moz-border-radius : 5px;padding : 4px;width:650;height:420px;overflow:scroll} | 
						|
.treebutton { | 
						|
      border:none; | 
						|
      margin: 0 4px 0 0; | 
						|
    } | 
						|
 @media print{ | 
						|
.dontprint{display:none;} | 
						|
} | 
						|
 | 
						|
div.bar { | 
						|
width:20px; | 
						|
height:20px; | 
						|
margin-top:2px; | 
						|
background-color:darkblue; | 
						|
color:white; | 
						|
font:10px san-serif; | 
						|
text-align:right; | 
						|
padding:3px; | 
						|
} | 
						|
 | 
						|
div.section | 
						|
{ | 
						|
margin-bottom:5px; | 
						|
padding-bottom:10px; | 
						|
/*border-bottom:thick solid gray;*/ | 
						|
} | 
						|
 | 
						|
</style><script language="Javascript" type="text/javascript" src="../xml/js/viz/d3.min.js"></script><script language="Javascript" type="text/javascript" src="../xml/js/viz/plot.js"></script><script language="Javascript" type="text/javascript" src=""></script><script language="Javascript" type="text/javascript" src="/superx/xml/js/viz/viz_functions.js"></script><script language="Javascript" type="text/javascript" src="/superx/xml/js/viz/viz_functions.js"></script><script language="Javascript" type="text/javascript" src=""></script><script language="Javascript" type="text/javascript" src="/superx/xml/js/viz/viz_functions.js"></script><script language="Javascript" type="text/javascript" src=""></script><script language="Javascript" type="text/javascript" src=""></script><script language="Javascript" type="text/javascript" src="/superx/xml/js/viz/viz_functions.js"></script><script language="Javascript" type="text/javascript" src="/superx/xml/js/viz/viz_functions.js"></script><script language="Javascript" type="text/javascript" src=""></script><script language="Javascript" type="text/javascript" src="/superx/xml/js/viz/viz_functions.js"></script><script language="Javascript" type="text/javascript" src=""></script><script> | 
						|
 | 
						|
//document.body.append(Plot.plot(options)); | 
						|
 | 
						|
function commonChartProperty(name, | 
						|
caption, | 
						|
isMandatory, | 
						|
inputType, | 
						|
staticValues, | 
						|
range_from, | 
						|
range_to, | 
						|
defaultValue, | 
						|
explanation, | 
						|
groupCaption, | 
						|
groupUniquename, | 
						|
rendererUniquename, | 
						|
groupVariableName, | 
						|
variableName, | 
						|
propValueType | 
						|
)  | 
						|
{ | 
						|
this.name=name; | 
						|
this.caption=caption; | 
						|
this.staticValues=staticValues; | 
						|
this.range_from=range_from; | 
						|
this.range_to=range_from; | 
						|
this.isMandatory=isMandatory; | 
						|
this.inputType=inputType; | 
						|
this.defaultValue=defaultValue; | 
						|
this.explanation=explanation; | 
						|
this.groupCaption=groupCaption; | 
						|
this.groupUniquename=groupUniquename; | 
						|
this.rendererUniquename=rendererUniquename; | 
						|
this.groupVariableName=groupVariableName; | 
						|
this.variableName=variableName; | 
						|
this.propValueType=propValueType; | 
						|
this.getValueResultset = function () { | 
						|
var valueOptions=[]; | 
						|
var optionCounter=0; | 
						|
var staticValueArray = staticValues.split(/\|/); | 
						|
	for(var j=0;j < staticValueArray.length;j++) | 
						|
		{ | 
						|
		var isDefault=false; | 
						|
		if(staticValueArray[j]) | 
						|
			{ | 
						|
				if(staticValueArray[j]==this.defaultValue) | 
						|
					isDefault=true; | 
						|
				var o=new selectionPropertyValue(optionCounter,staticValueArray[j],staticValueArray[j],isDefault); | 
						|
				valueOptions[optionCounter]=o; | 
						|
				optionCounter++; | 
						|
			} | 
						|
		} | 
						|
	return valueOptions; | 
						|
} | 
						|
} | 
						|
function commonChartPropertyGroup(caption,groupUniquename,groupVariableName)  | 
						|
{ | 
						|
this.caption=caption; | 
						|
this.groupUniquename=groupUniquename; | 
						|
this.groupVariableName=groupVariableName; | 
						|
} | 
						|
function vizType(uniquename,caption,rendererUniquename)  | 
						|
{ | 
						|
this.caption=caption; | 
						|
this.uniquename=uniquename; | 
						|
this.rendererUniquename=rendererUniquename; | 
						|
} | 
						|
 | 
						|
function vizTypeProperty(propUniquename,caption,typeUniquename,groupUniquename,isMandatory)  | 
						|
{ | 
						|
this.propUniquename=propUniquename; | 
						|
this.caption=caption; | 
						|
this.groupUniquename=groupUniquename; | 
						|
this.typeUniquename=typeUniquename; | 
						|
this.isMandatory=isMandatory; | 
						|
} | 
						|
 | 
						|
 | 
						|
var commonChartProperties=[]; | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("height","Diagramm-Höhe",false,"RANGE" | 
						|
,"","","","","Diagrammhöhe (exkl. Skalenbeschriftung). Wird nur ausgewertet wenn es keine Y-Achse gibt!","Layout","LAYOUT","plot","layout","height","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("width","Diagramm-Breite",false,"RANGE" | 
						|
,"","100","2000","","Diagrammsbreite (exkl.Skalenbeschriftung)","Layout","LAYOUT","plot","layout","width","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("marginLeft","Außenrand links",false,"RANGE" | 
						|
,"","","","","Abstand links neben der Grafik (inkl. Skala)","Layout","LAYOUT","plot","layout","marginLeft","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("marginRight","Außenrand rechts",false,"RANGE" | 
						|
,"","","","","Abstand rechts neben der Grafik (inkl. Skala)","Layout","LAYOUT","plot","layout","marginRight","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("marginTop","Außenrand oben",false,"RANGE" | 
						|
,"","","","","Abstand oberhalb der Grafik","Layout","LAYOUT","plot","layout","marginTop","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("marginBottom","Außenrand unten",false,"RANGE" | 
						|
,"","","","","","Layout","LAYOUT","plot","layout","marginBottom","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("insetTop","Innenrand oben",false,"RANGE" | 
						|
,"","","","","Oberer Abstand zwischen Diagramm und Grafik","Layout","LAYOUT","plot","layout","insetTop","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("insetBottom","Innenrand unten",false,"RANGE" | 
						|
,"","","","","Unterer Abstand zwischen Diagramm und Grafik","Layout","LAYOUT","plot","layout","insetBottom","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("insetLeft","Innenrand links",false,"RANGE" | 
						|
,"","","","","Linker Abstand zwischen Diagramm und Grafik","Layout","LAYOUT","plot","layout","insetLeft","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("insetRight","Innenrand rechts",false,"RANGE" | 
						|
,"","","","","Rechter Abstand zwischen Diagramm und Grafik","Layout","LAYOUT","plot","layout","insetRight","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("fill","Flächenfarbe",false,"TEXT" | 
						|
,"","","","","Füllfarbe (nur) von Diagrammelementen (Flächen, Balken, Säulen, Streifen, Punkte)","Layout","LAYOUT","plot","layout","fill","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("backgroundColor","Hintergrundfarbe",false,"COLOR" | 
						|
,"#ffffeb","","","#ffffff","Hintergrundfarbe der Grafik","Style","STYLE","plot","style","background","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("color","Vordergrundfarbe",false,"COLOR" | 
						|
,"black","","","","Farbe von Text- und Diagrammelementen","Style","STYLE","plot","style","color","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("fontFamily","Schriftfamilie",false,"SELECT" | 
						|
,"serif|sans-serif|monospace|system_ui","","","","Schriftfamlilie der Skalenbeschriftung","Style","STYLE","plot","style","fontFamily","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("fontSize","Schriftgröße",false,"RANGE" | 
						|
,"","","","","Schriftgröße der Skalenbeschriftung","Style","STYLE","plot","style","fontSize","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("marks","Elementtyp",false,"SELECT" | 
						|
,"Plot.line|Plot.dot|Plot.areaX|Plot.areaY.|Plot.barX|Plot.barY|Plot.rectX|Plot.rectY|Plot.ruleX|Plot.ruleY|Plot.tickX|Plot.tickY|Plot.arrow|Plot.cell|Plot.text|Plot.link|Plot.image","","","","Ausrichtung und Form der Dialgrammelemente","Diagramm-Elemente","MARKS","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("type","Farbtyp",false,"SELECT" | 
						|
,"einfarbig|mehrfarbig|zyklisch","","","","Ein-/Mehrfarbigkeit von Diagrammelementen","Diagramm-Elemente","MARKS","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("schemetype","Farbschema-Typ",false,"SELECT" | 
						|
,"linear|sqrt|pow|log|symlog|sequential|cyclical|quantile","","","","Art der Farbverteilung in Diagrammelementen","Diagramm-Elemente","MARKS","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("fillOpacity","Farbsättigung",false,"RANGE" | 
						|
,"","","","","Deckkraft der Füllfarbe von Diagrammelementen","Diagramm-Elemente","MARKS","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("stroke","Strichfarbe",false,"TEXT" | 
						|
,"","","","","Strichfarbe von Diagrammelementen (relevant für Plot.dot, Plot.tickX/Y)","Diagramm-Elemente","MARKS","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("strokeWidth","Strichdicke",false,"TEXT" | 
						|
,"","","","","Strichdicke von Diagrammelementen (relevant für Plot.dot, Plot.tickX/Y)","Diagramm-Elemente","MARKS","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("continous scales","Fortlaufende Skala",false,"SELECT" | 
						|
,"identity|linear|log|pow|sqrt|symlog","","","","Art der Skalen-Gliederung","Skalen-Typen","SCALES","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("categorical scales","Kategorie-Skala",false,"SELECT" | 
						|
,"point|band","","","","Art der Skalen-Gliederung","Skalen-Typen","SCALES","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("date scales","Datums-Skala",false,"SELECT" | 
						|
,"time|utc","","","","Art der Skalen-Gliederung","Skalen-Typen","SCALES","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("stroke_bar","Balkensegment",false,"TEXT" | 
						|
,"","","","","","Kategorie-Achse","CATEGORY","","","stroke","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("y_horizontal","Kategorie-Dimension",false,"TEXT" | 
						|
,"","","","","","Kategorie-Achse","CATEGORY","","","y","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("viz_dimension1","Kategorie-Dimension 1",false,"TEXT" | 
						|
,"","","","","","Kategorie-Achse","CATEGORY","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("viz_dimension2","Kategorie-Dimension 2",false,"TEXT" | 
						|
,"","","","","","Kategorie-Achse","CATEGORY","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("x_horizontal","Maß",false,"TEXT" | 
						|
,"","","","","","Kategorie-Achse","CATEGORY","","","x","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("text_horizontal","Textbeschriftung",false,"TEXT" | 
						|
,"","","","","","Kategorie-Achse","CATEGORY","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("viz_measure1","Maß",false,"TEXT" | 
						|
,"","","","","","Maß-Achse","MEASURE","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("viz_measure2","Maß 2",false,"TEXT" | 
						|
,"","","","","","Maß-Achse","MEASURE","","","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("scheme","Farbschema",false,"SELECT" | 
						|
,"blues|greens|greys|oranges|purples|reds","","","","Farbschema von Diagrammelemente","Farben","COLOR","plot","color","scheme","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("legend","Legende",false,"SELECT" | 
						|
,"true|false","","","","","Farben","COLOR","plot","color","legend","boolean"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("labelAnchor","Kat: Label-Ausrichtung",false,"SELECT" | 
						|
,"left|center|right","","","","Label-Position","Achsen-Beschriftung","TICKS_LABELS","plot","x","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("labelOffset","Kat: Label-Abstand",false,"TEXT" | 
						|
,"","","","","Label-Abstand von Achse","Achsen-Beschriftung","TICKS_LABELS","plot","x","","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("tickSize","Kat: Schriftgröße",false,"TEXT" | 
						|
,"","","","","Größe der Achsenwerte","Achsen-Beschriftung","TICKS_LABELS","plot","x","","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("tickRotate","Kat: Schriftneigung",false,"TEXT" | 
						|
,"","","","","Neigungswinkel der Achsenwerte","Achsen-Beschriftung","TICKS_LABELS","plot","x","tickRotate","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("ticks","Kat: Skalierung",false,"TEXT" | 
						|
,"","","","","Feinheit der Wertegliederung","Achsen-Beschriftung","TICKS_LABELS","plot","x","","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("gridChartOffset","Maß: Chart-Abstand",false,"TEXT" | 
						|
,"","","","","","Achsen-Beschriftung","TICKS_LABELS","plot","x","","string"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("gridLabelHeight","Maß: Label-Höhe",false,"TEXT" | 
						|
,"","","","","","Achsen-Beschriftung","TICKS_LABELS","plot","x","","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
var newCommonChartProperty = new commonChartProperty("valueLabelWidth","Werte-Label-Breite",false,"TEXT" | 
						|
,"","","","","","Achsen-Beschriftung","TICKS_LABELS","plot","x","","integer"); | 
						|
commonChartProperties.push(newCommonChartProperty); | 
						|
 | 
						|
 | 
						|
var vizTypes=[]; | 
						|
 | 
						|
var newVizType = new vizType("bar_x_stacked","Balken gestapelt (horiz.)","plot"); | 
						|
vizTypes.push(newVizType); | 
						|
 | 
						|
var newVizType = new vizType("bar_x","Balken (horizontal)","plot"); | 
						|
vizTypes.push(newVizType); | 
						|
 | 
						|
var newVizType = new vizType("bar_y","Balken (vertikal)","plot"); | 
						|
vizTypes.push(newVizType); | 
						|
 | 
						|
var newVizType = new vizType("area_y","Flächen (vertikal)","plot"); | 
						|
vizTypes.push(newVizType); | 
						|
 | 
						|
var newVizType = new vizType("line","Linien (vertikal)","plot"); | 
						|
vizTypes.push(newVizType); | 
						|
 | 
						|
var newVizType = new vizType("dot","Punkte (vertikal)","plot"); | 
						|
vizTypes.push(newVizType); | 
						|
 | 
						|
 | 
						|
var vizTypeProperties=[]; | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_dimension1","Kategorie-Dimension 1","area_y","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_measure1","Maß","area_y","MEASURE",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_dimension1","Kategorie-Dimension 1","bar_x","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_measure1","Maß","bar_x","MEASURE",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("stroke_bar","Balkensegment","bar_x_stacked","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("y_horizontal","Kategorie-Dimension","bar_x_stacked","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("x_horizontal","Maß","bar_x_stacked","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("text_horizontal","Textbeschriftung","bar_x_stacked","CATEGORY",0 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_dimension1","Kategorie-Dimension 1","bar_y","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_measure1","Maß","bar_y","MEASURE",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_dimension1","Kategorie-Dimension 1","dot","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_measure1","Maß","dot","MEASURE",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_dimension1","Kategorie-Dimension 1","line","CATEGORY",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
 | 
						|
var newVizTypeProperty = new vizTypeProperty("viz_measure1","Maß","line","MEASURE",1 | 
						|
); | 
						|
vizTypeProperties.push(newVizTypeProperty); | 
						|
</script><script language="Javascript" type="text/javascript" src="../xml/js/viz/viz_functions.js"></script><script xmlns:ext1="de.memtext.util.DateUtils" xmlns:ext2="java.util.Date" xmlns:string="java.lang.String" language="javascript">    | 
						|
            function tableonload() {} | 
						|
   </script><body onload="document.getElementById('progressbar').style.display='none';tableonload();"> | 
						|
      <div id="progressbar" style="position:absolute; width:150px; height:150px; left:200px; top:200px; background:#AAAAAA"> | 
						|
         <p> <b>Laden...</b><br><img src="../images/progress_bar.gif"><br></p> | 
						|
      </div> | 
						|
      <div class="menue menuFrame" id="leftpanel3"> | 
						|
         <div class="menue"> | 
						|
            <ul class="ui-listview" style="margin:0;padding:0"> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 icon icon-menu" href="/superx/servlet/SuperXmlMenu?tid=2&navi=true">Administration</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=4&navi=true">Benutzer verwalten</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=5&navi=true">Benutzerinfo verwalten</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=971&navi=true">Entwicklung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=6&navi=true">Masken verwalten</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=7&navi=true">Felder</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=646&navi=true">Uploads/Downloads verwalten</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=86&navi=true">Bewerbung, Zulassung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=87&navi=true">Administration Bewerbung, Zulassung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=1016&navi=true">APP-Bewerber</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=384&navi=true">Finanzrechnung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=385&navi=true">Administration Finanzrechnung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=386&navi=true">Haushalt</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=388&navi=true">Kaufm.Auswertungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=225&navi=true">Grunddaten und Kennzahlen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=234&navi=true">Administration Grunddaten und Kennzahlen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=1074&navi=true">Datenanalyse KENN</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=229&navi=true">Grunddaten Finanzrechnung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=228&navi=true">Grunddaten Kostenrechnung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=227&navi=true">Grunddaten Stellen, Personal</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=226&navi=true">Grunddaten Studierende, Prüfungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=231&navi=true">Semesterberichte</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=230&navi=true">Zentrale Kennzahlen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 0" href="/superx/servlet/SuperXmlMenu?tid=932&navi=true">HeartBeat</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=178&navi=true">Inventar</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=179&navi=true">Administration Inventar</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=91&navi=true">Kostenrechnung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=92&navi=true">Administration Kostenrechnung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 0" href="/superx/servlet/SuperXmlMenu?tid=990&navi=true">Laderoutinen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=991&navi=true">Administration Laderoutinen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 0" href="/superx/servlet/SuperXmlMenu?tid=714&navi=true">Management</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=715&navi=true">Administration Management</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=716&navi=true">Management Detailabfragen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=116&navi=true">Personal, Stellen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=691&navi=true">Administration Personal, Stellen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=120&navi=true">Besetzung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=118&navi=true">Personal</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=119&navi=true">Chancengleichheit</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=117&navi=true">Stellen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 0" href="/superx/servlet/SuperXmlMenu?tid=905&navi=true">Qualitätssicherung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=906&navi=true">Administration Qualitätssicherung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=194&navi=true">Studiengänge</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=195&navi=true">Administration Studiengänge</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=197&navi=true">Auswertungen zu Studiengängen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 " href="/superx/servlet/SuperXmlMenu?tid=44&navi=true">Studierende, Prüfungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=46&navi=true">Administration Studierende, Prüfungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=927&navi=true">Akkreditierungsrat Berichte</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=643&navi=true">Campus-Berichte</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=966&navi=true">CO Basisdaten</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=1071&navi=true">Entwicklung FHDO</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=900&navi=true">Leistungsdaten</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=909&navi=true">Leistungsmonitoring</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 0" href="/superx/servlet/SuperXmlMenu?tid=924&navi=true">Administration Leistungsmonitoring</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=47&navi=true">Prüfungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=426&navi=true">Abschlussprüfungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=48&navi=true">Einzelprüfungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=183&navi=true">Studienverlauf</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=1037&navi=true">Akkreditierung  FHDO</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene3"> | 
						|
                  <p class="listlevel"><a class="ebene_his_3 " href="/superx/servlet/SuperXmlMenu?tid=1034&navi=true">Schwundberichte FHDO</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 " href="/superx/servlet/SuperXmlMenu?tid=45&navi=true">Studierende</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2 0" href="/superx/servlet/SuperXmlMenu?tid=675&navi=true">Studienerfolg sehen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 0" href="/superx/servlet/SuperXmlMenu?tid=999&navi=true">Visualisierungen</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 0" href="/superx/servlet/SuperXmlMenu?tid=685&navi=true">Wissensbasis</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none"> | 
						|
                  <p class="listlevel"> </p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 icon icon-wrench" tabindex="30" href="/superx/edit/kern/webapp_manager.jsp" target="_blank" style="cursor:pointer;">Webanwendung Manager</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2" tabindex="30" href="/superx/servlet/SuperXManager?xupdater=true" target="_blank" style="cursor:pointer;">Masken-Sicherung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene2"> | 
						|
                  <p class="listlevel"><a class="ebene_his_2" tabindex="30" href="/superx/servlet/de.superx.servlet.Entwicklung" target="_blank" style="cursor:pointer;">Masken-Entwicklung</a></p> | 
						|
               </li> | 
						|
               <li style="list-style:none"> | 
						|
                  <p class="listlevel"> </p> | 
						|
               </li> | 
						|
               <li style="list-style:none"> | 
						|
                  <p class="listlevel"> </p> | 
						|
               </li> | 
						|
               <li style="list-style:none" class="ebene1"> | 
						|
                  <p class="listlevel"><a class="ebene_his_1 icon icon-logout" tabindex="30" href="/superx/servlet/SuperXmlAbmeldung" target="_parent" style="cursor:pointer;">Abmelden</a></p> | 
						|
               </li> | 
						|
            </ul> | 
						|
         </div> | 
						|
      </div> | 
						|
      <div class="page-wrap"> | 
						|
         <div xmlns:ext1="de.memtext.util.DateUtils" xmlns:ext2="java.util.Date" xmlns:string="java.lang.String" class="header_hisinone"> | 
						|
            <div class="logo"><a href="http://www.superx-projekt.de" target="_parent" style="float:left;"><img src="../images/superx.gif" alt="SuperX" class="logoPortal" title="SuperX" border="0"></a><ul class="nav" style="float:left;"> | 
						|
                  <li class="open-menu"><a class="topMenuLink" href="#leftpanel3">Navigation ein/aus</a></li> | 
						|
                  <li class="close-menu"><a class="topMenuLink" href="#">Navigation ein/aus</a></li> | 
						|
               </ul> | 
						|
            </div> | 
						|
            <div style="float:right;"> | 
						|
               <ul class="nav" style="float:left;"> | 
						|
                  <li><a class="topMenuLink icon icon-home" target="_parent" href="/superx/"> | 
						|
                        	Startseite</a></li> | 
						|
                  <li><a class="topMenuLink icon icon-logout" target="_parent" href="/superx/servlet/SuperXmlAbmeldung">Abmelden</a></li> | 
						|
               </ul> | 
						|
            </div> | 
						|
            <div class="services"> | 
						|
               <ol> | 
						|
                  <li></li> | 
						|
               </ol> | 
						|
            </div> | 
						|
         </div> | 
						|
         <div id="wrapper"> | 
						|
            <table xmlns:ext1="de.memtext.util.DateUtils" xmlns:ext2="java.util.Date" xmlns:string="java.lang.String" id="customheader" border="0" width="100%"> | 
						|
               <colgroup> | 
						|
                  <col width="90%"> | 
						|
                  <col width="10%"> | 
						|
               </colgroup> | 
						|
               <tr> | 
						|
                  <td class="hs_header"> | 
						|
                     <h3 class="hs_header_inst">Memtext University</h3> | 
						|
                  </td> | 
						|
                  <td class="hs_header_img"><img border="0" alt="Logo" src="../images/SymbolU.gif"></td> | 
						|
               </tr> | 
						|
            </table> | 
						|
            <!--Template viz_canvas in file viz_html_barchart_horiz.xsl--> | 
						|
            <h1>Studierende Makro Test</h1> | 
						|
            <p></p> | 
						|
            <p class="dontprint"> | 
						|
               Datensatz NaN -  | 
						|
                von insgesamt  | 
						|
                Sätzen.  | 
						|
                | 
						|
            </p><script language="Javascript"> | 
						|
var platform='superx'; | 
						|
</script><script language="Javascript"> | 
						|
 | 
						|
var vizInitialName='Studierende Makro Test'; | 
						|
 | 
						|
 | 
						|
function tableMetaData(nr,value,name,isDefault) | 
						|
{ | 
						|
    this.value=value; | 
						|
    this.nr=nr; | 
						|
    this.name=name | 
						|
    this.isDefault=isDefault; | 
						|
 | 
						|
} | 
						|
 | 
						|
 | 
						|
function dataRowMetaData(tableId,nr,colname,colcaption,coltype,colfunction) | 
						|
    { | 
						|
    this.tableId=tableId; | 
						|
    this.nr=nr; | 
						|
this.colname=colname; | 
						|
this.colcaption=colcaption; | 
						|
this.coltype=coltype; | 
						|
this.colfunction=colfunction; | 
						|
} | 
						|
 | 
						|
var rsTableMetaData=new Array(); | 
						|
 | 
						|
</script><section class="hero-body has-background-light"> | 
						|
               <div class="columns is-mobile is-left"> | 
						|
                  <div class="card has-background-light"> | 
						|
                     <div class="card-content"> | 
						|
                        <p class="title is-4">Konfigurationsassistent Datenvisualisierung</p> | 
						|
                        <div class="tabs is-left is-small" id="viznav"> | 
						|
                           <ul> | 
						|
                              <li data-target="viznav-tab1" id="1"><a onclick="showVizNavTab(1);"><span>Diagramm-Daten</span></a></li> | 
						|
                              <li data-target="viznav-tab2" id="2"><a onclick="showVizNavTab(2);"><span>Diagramm-Layout</span></a></li> | 
						|
                              <li data-target="viznav-tab3" id="3"><a onclick="showVizNavTab(3);"><span>Diagramm-Nutzung</span></a></li> | 
						|
                           </ul> | 
						|
                        </div> | 
						|
                        <div class="tab-content"> | 
						|
                           <div class="viznav-tab1" id="tab-1" style="display:block"> | 
						|
                              <p class="title is-5">Studierende nach Erst- und Neueinschreibung (Zeitreihe)</p> | 
						|
                              <!--Template legende in file resultset_html.xsl--> | 
						|
                              <p class="legende"><span class="feldname">Köpfe oder Fälle ?</span>:  | 
						|
                                 		<span class="feldwert">Köpfe</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Stichtag</span>:  | 
						|
                                 		<span class="feldwert">Aktuelle Zahlen</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Seit Semester</span>:  | 
						|
                                 		<span class="feldwert">WiSe 2017/2018</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Bis Semester</span>:  | 
						|
                                 		<span class="feldwert">WiSe 2022/2023</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Status</span>:  | 
						|
                                 		<span class="feldwert">Alle ohne Beurl.</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Hörerstatus</span>:  | 
						|
                                 		<span class="feldwert">alle</span> | 
						|
                                 	; | 
						|
                                 	 | 
						|
                                 User: superx  | 
						|
                                 Stand: 10.08.2022 | 
						|
                              </p><script language="Javascript"> | 
						|
 | 
						|
rsTableMetaData.push(new tableMetaData( | 
						|
1,'table0','table0', | 
						|
true | 
						|
)); | 
						|
 | 
						|
var rs_table0MetaData=new Array(); | 
						|
 | 
						|
function dataRow_table0(rownr,eintrag,gesamt,ges_1fs,round,ges_1hs,specialcol1,column_7,frauen,specialcol2,frau_1fs,specialcol3,frau_1hs,specialcol4 | 
						|
) | 
						|
    { | 
						|
    this.rownr=rownr; | 
						|
    this.eintrag=eintrag; | 
						|
this.gesamt=gesamt; | 
						|
this.ges_1fs=ges_1fs; | 
						|
this.round=round; | 
						|
this.ges_1hs=ges_1hs; | 
						|
this.specialcol1=specialcol1; | 
						|
this.column_7=column_7; | 
						|
this.frauen=frauen; | 
						|
this.specialcol2=specialcol2; | 
						|
this.frau_1fs=frau_1fs; | 
						|
this.specialcol3=specialcol3; | 
						|
this.frau_1hs=frau_1hs; | 
						|
this.specialcol4=specialcol4; | 
						|
 | 
						|
} | 
						|
 | 
						|
var rs_table0= new Array(); | 
						|
 | 
						|
 | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',1,'eintrag','Semester',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',2,'gesamt','Gesamt-  zahl',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',3,'ges_1fs','1. FS  gesamt',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',4,'round','1. FS  in %',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',5,'ges_1hs','1. HS gesamt',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',6,'specialcol1','1. HS  in %',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',7,'column_7',' ',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',8,'frauen','dar.  Frauen',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',9,'specialcol2','Frauen  in %',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',10,'frau_1fs','1. FS  Frauen',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',11,'specialcol3','1. FS  Frauen  in %',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',12,'frau_1hs','1. HS  Frauen',0,null)); | 
						|
rs_table0MetaData.push(new dataRowMetaData('table0',13,'specialcol4','1. HS  Frauen  in %',0,null)); | 
						|
rs_table0MetaData[0].coltype=1; | 
						|
 | 
						|
rs_table0MetaData[1].coltype=4; | 
						|
 | 
						|
rs_table0MetaData[2].coltype=4; | 
						|
 | 
						|
rs_table0MetaData[3].coltype=3; | 
						|
 | 
						|
rs_table0MetaData[4].coltype=4; | 
						|
 | 
						|
rs_table0MetaData[5].coltype=3; | 
						|
 | 
						|
rs_table0MetaData[6].coltype=1; | 
						|
 | 
						|
rs_table0MetaData[7].coltype=4; | 
						|
 | 
						|
rs_table0MetaData[8].coltype=3; | 
						|
 | 
						|
rs_table0MetaData[9].coltype=4; | 
						|
 | 
						|
rs_table0MetaData[10].coltype=3; | 
						|
 | 
						|
rs_table0MetaData[11].coltype=4; | 
						|
 | 
						|
rs_table0MetaData[12].coltype=3; | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(1,'SoSe 2022',2,2,100.00,2,100.00,'',null,null,null,null,null,null)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(2,'WiSe 2021/2022',2,1,50.00,1,50.00,'',2,100.00,1,100.00,1,100.00)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(3,'SoSe 2021',579,119,20.55,99,17.10,'',240,41.45,44,36.97,37,37.37)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(4,'WiSe 2020/2021',718,361,50.28,327,45.54,'',322,44.85,152,42.11,142,43.43)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(5,'SoSe 2020',447,210,46.98,198,44.30,'',210,46.98,96,45.71,88,44.44)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(6,'WiSe 2019/2020',274,142,51.82,122,44.53,'',128,46.72,68,47.89,59,48.36)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(7,'SoSe 2019',148,41,27.70,39,26.35,'',66,44.59,16,39.02,14,35.90)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(8,'WiSe 2018/2019',111,59,53.15,45,40.54,'',54,48.65,28,47.46,25,55.56)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(9,'SoSe 2018',72,9,12.50,8,11.11,'',31,43.06,2,22.22,2,25.00)); | 
						|
 | 
						|
rs_table0.push(new dataRow_table0(10,'WiSe 2017/2018',63,29,46.03,19,30.16,'',29,46.03,15,51.72,12,63.16)); | 
						|
</script><p class="title is-5">Prüfungen nach Notendurchschnitt (Zeitreihe)</p> | 
						|
                              <!--Template legende in file resultset_html.xsl--> | 
						|
                              <p class="legende"><span class="feldname">Köpfe oder Fälle ?</span>:  | 
						|
                                 		<span class="feldwert">Köpfe</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Stichtag Prüfungen</span>:  | 
						|
                                 		<span class="feldwert">Aktuelle Zahlen</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Seit Semester</span>:  | 
						|
                                 		<span class="feldwert">WiSe 2017/2018</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Bis Semester</span>:  | 
						|
                                 		<span class="feldwert">WiSe 2022/2023</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Prüfungsstatus</span>:  | 
						|
                                 		<span class="feldwert">bestanden</span> | 
						|
                                 	; | 
						|
                                 	<span class="feldname">Studienabschnitt</span>:  | 
						|
                                 		<span class="feldwert">Hauptprüfung</span> | 
						|
                                 	; | 
						|
                                 	 | 
						|
                                 User: superx  | 
						|
                                 Stand: 10.08.2022 | 
						|
                              </p><script language="Javascript"> | 
						|
 | 
						|
rsTableMetaData.push(new tableMetaData( | 
						|
2,'table1','table1', | 
						|
false | 
						|
)); | 
						|
 | 
						|
var rs_table1MetaData=new Array(); | 
						|
 | 
						|
function dataRow_table1(rownr,eintrag,anzahl,alle_unbek,column_4,alle,alle_maenner,alle_frauen,deutsche,deutsche_maenner,deutsche_frauen,auslaender,ausl_maenner,ausl_frauen | 
						|
) | 
						|
    { | 
						|
    this.rownr=rownr; | 
						|
    this.eintrag=eintrag; | 
						|
this.anzahl=anzahl; | 
						|
this.alle_unbek=alle_unbek; | 
						|
this.column_4=column_4; | 
						|
this.alle=alle; | 
						|
this.alle_maenner=alle_maenner; | 
						|
this.alle_frauen=alle_frauen; | 
						|
this.deutsche=deutsche; | 
						|
this.deutsche_maenner=deutsche_maenner; | 
						|
this.deutsche_frauen=deutsche_frauen; | 
						|
this.auslaender=auslaender; | 
						|
this.ausl_maenner=ausl_maenner; | 
						|
this.ausl_frauen=ausl_frauen; | 
						|
 | 
						|
} | 
						|
 | 
						|
var rs_table1= new Array(); | 
						|
 | 
						|
 | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',1,'eintrag','Semester',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',2,'anzahl','Anzahl\n Note\n bekannt',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',3,'alle_unbek','Anzahl\n Note\n unbekannt',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',4,'column_4',' ',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',5,'alle','Alle',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',6,'alle_maenner','Alle\n Männer',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',7,'alle_frauen','Alle\n Frauen',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',8,'deutsche','Deutsche',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',9,'deutsche_maenner','Deutsche\nMänner',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',10,'deutsche_frauen','Deutsche\nFrauen',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',11,'auslaender','Ausländer',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',12,'ausl_maenner','Ausl.\n Männer',0,null)); | 
						|
rs_table1MetaData.push(new dataRowMetaData('table1',13,'ausl_frauen','Ausl.\n Frauen',0,null)); | 
						|
rs_table1MetaData[0].coltype=1; | 
						|
 | 
						|
rs_table1MetaData[1].coltype=4; | 
						|
 | 
						|
rs_table1MetaData[2].coltype=4; | 
						|
 | 
						|
rs_table1MetaData[3].coltype=1; | 
						|
 | 
						|
rs_table1MetaData[4].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[5].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[6].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[7].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[8].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[9].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[10].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[11].coltype=3; | 
						|
 | 
						|
rs_table1MetaData[12].coltype=3; | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(1,'SoSe 2018',2,null,'',2.600000000,2.200000000,3.000000000,2.600000000,2.200000000,3.000000000,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(2,'WiSe 2018/2019',1,null,'',2.300000000,null,2.300000000,2.300000000,null,2.300000000,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(3,'SoSe 2019',5,null,'',2.480000000,2.433333333,2.550000000,2.480000000,2.433333333,2.550000000,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(4,'WiSe 2019/2020',13,1,'',1.914615385,1.438333333,2.322857143,1.914615385,1.438333333,2.322857143,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(5,'SoSe 2020',21,3,'',2.070952381,2.045384615,2.112500000,2.072000000,2.045000000,2.112500000,2.050000000,2.050000000,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(6,'WiSe 2020/2021',21,1,'',2.321428571,2.437500000,2.166666667,2.321428571,2.437500000,2.166666667,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(7,'SoSe 2021',9,1,'',2.833333333,2.100000000,3.042857143,2.833333333,2.100000000,3.042857143,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(8,'WiSe 2021/2022',1,null,'',1.030000000,1.030000000,null,1.030000000,1.030000000,null,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(9,'WiSe 2022/2023',1,null,'',2.900000000,2.900000000,null,2.900000000,2.900000000,null,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(10,'',null,null,'',null,null,null,null,null,null,null,null,null)); | 
						|
 | 
						|
rs_table1.push(new dataRow_table1(11,'Gesamt - Ø',74,1,'',2.249459459,2.105128205,2.410285714,2.252191781,2.106578947,2.410285714,2.050000000,2.050000000,null)); | 
						|
</script><span class="separator"> </span><div class="field is-grouped"> | 
						|
                                 <div class="label-container"><label class="label is-required is-small"><strong>Daten-Tabelle Studierende nach Erst- und Neueinschreibung (Zeitreihe)</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="showDataTable('dataDivTabletable0',rs_table0,rs_table0MetaData,10);"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                              <div id="dataDiv"> | 
						|
                                 <div id="dataDivTabletable0"></div> | 
						|
                              </div><span class="separator"> </span><span class="separator"> </span><div class="field is-grouped"> | 
						|
                                 <div class="label-container"><label class="label is-required is-small"><strong>Daten-Tabelle Prüfungen nach Notendurchschnitt (Zeitreihe)</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="showDataTable('dataDivTabletable1',rs_table1,rs_table1MetaData,10);"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                              <div id="dataDiv"> | 
						|
                                 <div id="dataDivTabletable1"></div> | 
						|
                              </div><span class="separator"> </span><span class="separator"> </span><div class="field is-grouped"> | 
						|
                                 <div class="label-container"><label class="label is-required is-small"><strong>Daten-Auswahl</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="fillDataSelectionForm('dataSelectionFormDiv');"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                              <div id="dataSelectionDiv"> | 
						|
                                 <form name="dataSelectionForm" id="dataSelectionForm"> | 
						|
                                    <div id="dataSelectionFormDiv" style="display:none"> | 
						|
                                       <div class="field is-grouped"> | 
						|
                                          <div class="label-container"><label class="label is-required is-small">Dimension 1</label></div><span class="separator"> </span><span class="separator"> </span><div class="field is-active"> | 
						|
                                             <p class="control-new"> | 
						|
                                                <div class="select is-small is-fullwidth is-focused"><select class="maskinputPflicht" id="dimension1" name="dimension1" tabindex="210"> | 
						|
                                                      <option class="maskinput" value="" selected></option></select></div> | 
						|
                                             </p> | 
						|
                                          </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                             <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span><span class="separator"> </span><span class="separator"> </span><span class="separator"> </span><span class="separator"> </span><div class="field is-active"> | 
						|
                                             <p class="control-new"> | 
						|
                                                <div class="select is-small is-fullwidth"><select id="dimension1_fn" name="dimension1_fn" tabindex="210"> | 
						|
                                                      <option class="maskinput" value="" selected>Optional: Vordefinierte Transformation></option></select></div> | 
						|
                                             </p> | 
						|
                                          </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                             <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span></div> | 
						|
                                       <div class="field is-grouped"> | 
						|
                                          <div class="label-container"><label class="label is-required is-small">Dimension 2</label></div><span class="separator"> </span><span class="separator"> </span><div class="field is-active"> | 
						|
                                             <p class="control-new"> | 
						|
                                                <div class="select is-small is-fullwidth is-focused"><select class="maskinputPflicht" id="dimension2" name="dimension2" tabindex="210"> | 
						|
                                                      <option class="maskinput" value="" selected></option></select></div> | 
						|
                                             </p> | 
						|
                                          </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                             <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span><span class="separator"> </span><span class="separator"> </span><span class="separator"> </span><span class="separator"> </span><div class="field is-active"> | 
						|
                                             <p class="control-new"> | 
						|
                                                <div class="select is-small is-fullwidth"><select id="dimension2_fn" name="dimension2_fn" tabindex="210"> | 
						|
                                                      <option class="maskinput" value="" selected>Optional: Vordefinierte Transformation</option></select></div> | 
						|
                                             </p> | 
						|
                                          </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                             <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span></div> | 
						|
                                       <div class="field is-grouped"> | 
						|
                                          <div class="label-container"><label class="label is-required is-small">Maß</label></div><span class="separator"> </span><span class="separator"> </span><div class="field is-active"> | 
						|
                                             <p class="control-new"> | 
						|
                                                <div class="select is-small is-fullwidth"><select class="maskinputPflicht" id="measure1" name="measure1" tabindex="230"> | 
						|
                                                      <option class="maskinput" value="" selected></option></select></div> | 
						|
                                             </p> | 
						|
                                          </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                             <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span><span class="separator"> </span><span class="separator"> </span><span class="separator"> </span><span class="separator"> </span><div class="field is-active"> | 
						|
                                             <p class="control-new"> | 
						|
                                                <div class="select is-small is-fullwidth is-focused"><select id="measure1_fn" name="measure1_fn" tabindex="230"> | 
						|
                                                      <option class="maskinput" value="" selected>Optional: Vordefinierte Transformation</option></select></div> | 
						|
                                             </p> | 
						|
                                          </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                             <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span></div> | 
						|
                                    </div> | 
						|
                                 </form> | 
						|
                              </div><span class="separator"> </span><span class="separator"> </span><div class="field is-grouped"> | 
						|
                                 <div class="label-container"><label class="label is-required is-small"><strong>Daten-Vorschau</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="selectionResultPreview('selectionResultPreviewTable');"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                              <div id="selectionResultPreview"> | 
						|
                                 <div id="selectionResultPreviewTable" style="display:none"></div> | 
						|
                              </div> | 
						|
                              <footer class="card-footer"> | 
						|
                                 <p class="card-footer-item"><button class="button is-link is-outlined is-small" type="submit">Speichern</button></p> | 
						|
                                 <p class="card-footer-item"><button class="button is-link is-outlined is-small" type="reset">Zurücksetzen</button></p> | 
						|
                              </footer> | 
						|
                           </div> | 
						|
                           <div class="viznav-tab2" id="tab-2" style="display:none"> | 
						|
                              <div id="chartProperties"> | 
						|
                                 <form name="chartPropertiesForm"> | 
						|
                                    <div class="columns"> | 
						|
                                       <div class="column is-one-quarter"> | 
						|
                                          <p class="bd-notification is-primary"> | 
						|
                                             Diagramm | 
						|
                                              | 
						|
                                          </p> | 
						|
                                          <p><span class="button is-link is-outlined is-small" onClick="renderChart('chartDiv');">Erzeugen</span></p> | 
						|
                                       </div> | 
						|
                                       <div class="column is-half"> | 
						|
                                          <div class="field is-grouped"> | 
						|
                                             <div class="label-container"><label class="label is-required is-small">Name</label></div> | 
						|
                                             <div class="field is-active"> | 
						|
                                                <p class="control-new"> | 
						|
                                                   <div class="select is-small is-fullwidth"><textarea class="maskinput" id="chartName" name="chartName" rows="3" cols="20" onChange="renderChart('chartDiv');"></textarea></div> | 
						|
                                                </p> | 
						|
                                             </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                                <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span></div> | 
						|
                                       </div> | 
						|
                                       <div class="column"> | 
						|
                                          <div class="field is-grouped"> | 
						|
                                             <div class="label-container"><label class="label is-required is-small">Renderer</label></div> | 
						|
                                             <div class="field is-active"> | 
						|
                                                <p class="control-new"> | 
						|
                                                   <div class="select is-small is-fullwidth"><select class="maskinputPflicht" id="fldVizRenderer" NAME="fldVizRenderer" tabindex="1" onChange=""> | 
						|
                                                         <option class="maskinput" value="plot" selected>Observable Plot</option> | 
						|
                                                         <option class="maskinput" value="d3js">D3JS</option></select></div> | 
						|
                                                </p> | 
						|
                                             </div><span class="separator"> </span><span class="separator"> </span><span class="info" onclick="window.open('https://super-ics.de/superx/doku/kern_modul/admin/f_Patcheinspielen.htm','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,width=800,height=660');"> | 
						|
                                                <figure class="image is-24x24"><img src="../images/information_grey_liberation.svg"></figure></span></div> | 
						|
                                       </div> | 
						|
                                    </div> | 
						|
                                    <div class="columns"> | 
						|
                                       <div class="column is-one-third"> | 
						|
                                          <p class="bd-notification is-primary"> | 
						|
                                             Eigenschaften | 
						|
                                              | 
						|
                                          </p> | 
						|
                                          <div class="field is-grouped"> | 
						|
                                             <div class="label-container"><label class="label is-required is-small"><strong>Layoutmerkmale</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="showChartPropertiesFormDiv('generalChartPropertiesFormDiv','generalChartPropertiesFormElementsDiv',document.getElementById('fldVizRenderer').value);"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                                          <div id="generalChartPropertiesFormDiv" style="display:none"> | 
						|
                                             <div id="generalChartPropertiesFormElementsDiv"></div> | 
						|
                                          </div> | 
						|
                                          <div class="field is-grouped"> | 
						|
                                             <div class="label-container"><label class="label is-required is-small"><strong>Diagrammelemente</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="showChartPropertiesFormDiv('ChartElementsDiv','ChartElementListDiv',document.getElementById('fldVizRenderer').value);"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                                          <div id="ChartElementsDiv" style="display:none"> | 
						|
                                             <div id="ChartElementListDiv"><a onClick="createChartElementConfig1Form(document.getElementById('fldVizRenderer').value)">Neues Element</a></div> | 
						|
                                             <div id="ChartElementConfig1Div"></div> | 
						|
                                             <div id="ChartElementConfig2Div"></div> | 
						|
                                          </div> | 
						|
                                       </div> | 
						|
                                       <div class="column"> | 
						|
                                          <p class="bd-notification is-fojeisj">Vorschau</p> | 
						|
                                          <div id="chartCanvas"> | 
						|
                                             <div id="chartDiv"> | 
						|
                                                <svg viewBox="0 0 650 450"> | 
						|
                                                   <rect x="0" y="0" width="650" height="450" fill=""></rect> | 
						|
                                                   <path fill="#5a9900" d="M20,20 h300 v100 h-100 v100 h-200 z"></path> | 
						|
                                                   <path fill="#c32e04" d="M320,20 h200 v200 h-200 z"></path> | 
						|
                                                   <path fill="#dfac20" d="M220,120 h100 v100 h100 v100 h-100 v100 h-100 z"></path> | 
						|
                                                   <path fill="#3983ab" d="M420,220 h200 v100 h-100 v100 h-200 v-100 h100 z"></path> | 
						|
                                                </svg> | 
						|
                                             </div> | 
						|
                                          </div> | 
						|
                                       </div> | 
						|
                                    </div> | 
						|
                                 </form> | 
						|
                              </div><span class="separator"> </span><span class="separator"> </span><footer class="card-footer"> | 
						|
                                 <p class="card-footer-item"><button class="button is-link is-outlined is-small" type="submit">Speichern</button></p> | 
						|
                                 <p class="card-footer-item"><button class="button is-link is-outlined is-small" type="reset">Zurücksetzen</button></p> | 
						|
                              </footer> | 
						|
                           </div> | 
						|
                           <div class="viznav-tab3" id="tab-3" style="display:none"> | 
						|
                              <div class="field is-grouped"> | 
						|
                                 <div class="label-container"><label class="label is-required is-small"><strong>Diagramm-Vorschau</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="showChartDiv('chartDiv2'); createChart('chartDiv2');"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                              <div id="chartCanvas"> | 
						|
                                 <div id="chartDiv2"></div> | 
						|
                              </div><span class="separator"> </span><span class="separator"> </span><div class="field is-grouped"> | 
						|
                                 <div class="label-container"><label class="label is-required is-small"><strong>Diagramm-Code (svg)</strong></label></div><span class="separator"> </span><span class="separator"> </span><a onClick="showSrcCode();"><span class="icon"><img src="../images/icons/more.svg" title="Laden"></span></a></div> | 
						|
                              <div id="chartSVGsrcDiv"> | 
						|
                                 <div id="chartSVGsrc" style="display:none"><textarea id="chartSrc" name="chartSrc" class="textarea" placeholder="Quellcode..."></textarea></div> | 
						|
                              </div> | 
						|
                              <footer class="card-footer"> | 
						|
                                 <p class="card-footer-item"><button class="button is-link is-outlined is-small" type="submit" onClick="copySrcCode('chartSrc');">Kopieren</button></p> | 
						|
                              </footer> | 
						|
                           </div> | 
						|
                        </div> | 
						|
                     </div> | 
						|
                  </div> | 
						|
               </div> | 
						|
            </section> | 
						|
            <div xmlns:ext1="de.memtext.util.DateUtils" xmlns:ext2="java.util.Date" xmlns:string="java.lang.String" id="fuss"> | 
						|
               <hr><a href="http://www.superx-projekt.de" target="_top">Superx-Projekt</a> <a href="http://www.superx-projekt.de" target="_parent">http://www.superx-projekt.de</a> | 
						|
                 02.01.2023 | 
						|
            </div> | 
						|
            <!--customfooter--> | 
						|
         </div> | 
						|
      </div> | 
						|
      <div xmlns:ext1="de.memtext.util.DateUtils" xmlns:ext2="java.util.Date" xmlns:string="java.lang.String" id="footer_sx" style="background-color: #f4f4ef;z-index: 1000;left: 0px;height: 30px;width: 100%;position: fixed;border-top: 1px solid #cccccc;bottom: 0px;"> | 
						|
         <div style="text-align: center;left:1em;"> | 
						|
            <ul id="top-navi"> | 
						|
               <li><a target="_blank" href="/superx/edit/kern/show_html_content.jsp?output=IMPRINT">Impressum</a></li> | 
						|
               <li><a target="_blank" href="/superx/edit/kern/show_html_content.jsp?output=PRIVACY">Datenschutz</a></li> | 
						|
            </ul> | 
						|
         </div> | 
						|
      </div> | 
						|
   </body> | 
						|
</html> |