Achsenbeschriftung korrigiert.
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				ci/woodpecker/push/default Pipeline was successful
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	ci/woodpecker/push/default Pipeline was successful
				
			This commit is contained in:
		
							parent
							
								
									f29c8806c0
								
							
						
					
					
						commit
						178e3ab9a8
					
				
					 1 changed files with 19 additions and 18 deletions
				
			
		
							
								
								
									
										31
									
								
								src/App.vue
									
										
									
									
									
								
							
							
						
						
									
										31
									
								
								src/App.vue
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -117,7 +117,7 @@
 | 
			
		|||
        <div class="row">
 | 
			
		||||
          <div class="column" style="text-align: center">
 | 
			
		||||
            <b>Datenpunkt</b><br />
 | 
			
		||||
            x; y<br />
 | 
			
		||||
            {{ this.beschriftungXachse }}; {{ this.beschriftungYachse }}<br />
 | 
			
		||||
            <textarea v-model="txt_datensatz" placeholder="add multiple lines" rows="10"></textarea>
 | 
			
		||||
            <br />
 | 
			
		||||
            <button class="btn btn-primary" @click="textarea_2_datensatz">
 | 
			
		||||
| 
						 | 
				
			
			@ -126,7 +126,7 @@
 | 
			
		|||
          </div>
 | 
			
		||||
          <div class="column" style="text-align: center">
 | 
			
		||||
            <b>Prototyp</b><br />
 | 
			
		||||
            x; y<br />
 | 
			
		||||
            {{ this.beschriftungXachse }}; {{ this.beschriftungYachse }}<br />
 | 
			
		||||
            <textarea v-model="txt_prototypensatz" placeholder="add multiple lines" rows="10"></textarea>
 | 
			
		||||
            <br />
 | 
			
		||||
            <button class="btn btn-primary" @click="textarea_2_prototypensatz">
 | 
			
		||||
| 
						 | 
				
			
			@ -423,7 +423,6 @@ export default {
 | 
			
		|||
    lade() {
 | 
			
		||||
      this.datensatz_2_textarea();
 | 
			
		||||
      this.prototypensatz_2_textarea();
 | 
			
		||||
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    datensatz_2_textarea() {
 | 
			
		||||
| 
						 | 
				
			
			@ -469,6 +468,8 @@ export default {
 | 
			
		|||
        this.datenpunkte = neuer_ds;
 | 
			
		||||
        this.anzahl_datenpunkte = this.datenpunkte.length;
 | 
			
		||||
        this.update_anzahl_datenpunkte(this.anzahl_datenpunkte);
 | 
			
		||||
        this.update_max_x_y();
 | 
			
		||||
        this.refresh();
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -516,6 +517,8 @@ export default {
 | 
			
		|||
        this.prototypen_original = neuer_ps;
 | 
			
		||||
        this.anzahl_prototypen = this.prototypen.length;
 | 
			
		||||
        this.update_anzahl_prototypen(this.anzahl_prototypen);
 | 
			
		||||
        this.update_max_x_y();
 | 
			
		||||
        this.refresh();
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -546,26 +549,24 @@ export default {
 | 
			
		|||
    },
 | 
			
		||||
 | 
			
		||||
    szenario_aendern() {
 | 
			
		||||
      /*
 | 
			
		||||
      if (this.szenario == "lebensmittel") {
 | 
			
		||||
        this.datenpunkte = this.ermittle_skalierten_datensatz(
 | 
			
		||||
          this.lebensmittel_datenpunkte
 | 
			
		||||
        );
 | 
			
		||||
        this.anzahl_datenpunkte = this.datenpunkte.length;
 | 
			
		||||
        this.update_anzahl_prototypen(4);
 | 
			
		||||
        this.datensatz_2_textarea();
 | 
			
		||||
      }
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
      switch (this.szenario) {
 | 
			
		||||
        case "gold_rush": this.datenpunkte = this.gold_rush_datenpunkte;
 | 
			
		||||
          this.prototypen = this.gold_rush_prototypen;
 | 
			
		||||
          this.beschriftungXachse = "X-Wert";
 | 
			
		||||
          this.beschriftungYachse = "Y-Wert";
 | 
			
		||||
          break;
 | 
			
		||||
        case "stadtplan": this.datenpunkte = this.stadtplan_datenpunkte;
 | 
			
		||||
          this.prototypen = this.stadtplan_prototypen;
 | 
			
		||||
          this.beschriftungXachse = "X-Wert";
 | 
			
		||||
          this.beschriftungYachse = "Y-Wert";
 | 
			
		||||
          break;
 | 
			
		||||
        case "lebensmittel": this.datenpunkte = this.lebensmittel_datenpunkte;
 | 
			
		||||
          this.prototypen = this.lebensmittel_prototypen;
 | 
			
		||||
          this.beschriftungXachse = "Fett";
 | 
			
		||||
          this.beschriftungYachse = "Kohlenhydrate";
 | 
			
		||||
          break;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1334,8 +1335,8 @@ export default {
 | 
			
		|||
      let beschriftungYachse = this.beschriftungYachse; // "Y-Wert"; //gibPraediktorvariablen()[1];
 | 
			
		||||
      this.vueCanvas.font = "14px Arial";
 | 
			
		||||
 | 
			
		||||
      let beschriftungXBreite = this.vueCanvas.measureText(beschriftungXachse).width + 6;
 | 
			
		||||
      let beschriftungYBreite = this.vueCanvas.measureText(beschriftungYachse).width + 6;
 | 
			
		||||
      //let beschriftungXBreite = this.vueCanvas.measureText(beschriftungXachse).width + 6;
 | 
			
		||||
      //let beschriftungYBreite = this.vueCanvas.measureText(beschriftungYachse).width + 6;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue