-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_region-template.html
More file actions
919 lines (870 loc) · 180 KB
/
_region-template.html
File metadata and controls
919 lines (870 loc) · 180 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.55">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>region-template</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
</style>
<script src="_region-template_files/libs/clipboard/clipboard.min.js"></script>
<script src="_region-template_files/libs/quarto-html/quarto.js"></script>
<script src="_region-template_files/libs/quarto-html/popper.min.js"></script>
<script src="_region-template_files/libs/quarto-html/tippy.umd.min.js"></script>
<script src="_region-template_files/libs/quarto-html/anchor.min.js"></script>
<link href="_region-template_files/libs/quarto-html/tippy.css" rel="stylesheet">
<link href="_region-template_files/libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="_region-template_files/libs/bootstrap/bootstrap.min.js"></script>
<link href="_region-template_files/libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="_region-template_files/libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<script src="_region-template_files/libs/core-js-2.5.3/shim.min.js"></script>
<script src="_region-template_files/libs/react-18.2.0/react.min.js"></script>
<script src="_region-template_files/libs/react-18.2.0/react-dom.min.js"></script>
<script src="_region-template_files/libs/reactwidget-2.0.0/react-tools.js"></script>
<link href="_region-template_files/libs/htmltools-fill-0.5.8.1/fill.css" rel="stylesheet">
<script src="_region-template_files/libs/htmlwidgets-1.6.4/htmlwidgets.js"></script>
<link href="_region-template_files/libs/reactable-0.4.4/reactable.css" rel="stylesheet">
<script src="_region-template_files/libs/reactable-binding-0.4.4/reactable.js"></script>
<script src="_region-template_files/libs/d3-bundle-5.16.0/d3-bundle.min.js"></script>
<script src="_region-template_files/libs/d3-lasso-0.0.5/d3-lasso.min.js"></script>
<script src="_region-template_files/libs/save-svg-as-png-1.4.17/save-svg-as-png.min.js"></script>
<script src="_region-template_files/libs/flatbush-4.4.0/flatbush.min.js"></script>
<link href="_region-template_files/libs/ggiraphjs-0.8.10/ggiraphjs.min.css" rel="stylesheet">
<script src="_region-template_files/libs/ggiraphjs-0.8.10/ggiraphjs.min.js"></script>
<script src="_region-template_files/libs/girafe-binding-0.8.12/girafe.js"></script>
</head>
<body class="fullcontent">
<div id="quarto-content" class="page-columns page-rows-contents page-layout-article">
<main class="content" id="quarto-document-content">
<p>Auf dieser Seite werden euch Ergebnisse der Befragung angezeigt, die die TEN SING Region Ostwerk betreffen.</p>
<p>Im Folgenden seht ihr eine Übersicht über die einzelnen Ortsgruppen der Region Ostwerk. Laut Teilnehmer*innen-Fragebogen gibt es 3 Ortsgruppe(n).<sup>1</sup> Für 2 Ortsgruppen wurde der Ortsgruppen-Fragebogen ausgefüllt.<sup>2</sup></p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-1-contents" aria-controls="callout-1" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-1" class="callout-1-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><sup>1</sup> Anzahl unterschiedlicher Angaben auf die Frage “<em>Wie heißt deine Ortsgruppe?</em>” im <a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a>, die in die Region Ostwerk fallen.</p>
<p><sup>2</sup> Anzahl Ortsgruppen, die bei der Frage “<em>In welcher Region liegt deine Ortsgruppe?</em>” im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a> “Ostwerk” angegeben haben.</p>
</div>
</div>
</div>
<p>Aufgelistet sind die Anzahl der aktiven TEN SINGer*innen pro Ortsgruppe, ihr Durchschnittsalter sowie die Anzahl der Auftritte pro Jahr.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" role="tab" aria-controls="tabset-1-1" aria-selected="true" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" role="tab" aria-controls="tabset-1-2" aria-selected="false" href="">2024</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-1-1-tab">
<div id="htmlwidget-7c12a4c6a1251ef73eba" class="reactable html-widget html-fill-item" style="width:auto;height:auto;">
</div>
<script type="application/json" data-for="htmlwidget-7c12a4c6a1251ef73eba">{"x":{"tag":{"name":"Reactable","attribs":{"data":{"og_name":["2.0.","Frankfurt (Oder)","Zeuthen","keine Angabe"],"hat_hauptamt":["Nein","Ja",null,null],"anzahl_insg":[14,72,4,1],"anzahl_tn":[8,32,1,1],"anzahl_ma_leitung":[6,40,3,0],"auftritte":[3,5,"NA","NA"],"hat_probleme_tn_gewinnung":["Ja, aber nur phasenweise","Ja, aber nur phasenweise",null,null],"avg_alter":[20,15,18,"NA"]},"columns":[{"id":"og_name","name":"Orts-<br>gruppe","type":"character","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"Summe / <br> Gesamt","html":true},{"id":"hat_hauptamt","name":"Hauptamt","type":"character","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"1"},{"id":"anzahl_insg","name":"Aktive","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"91"},{"id":"anzahl_tn","name":"Teiln.","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"42"},{"id":"anzahl_ma_leitung","name":"Mitarb.","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"49"},{"id":"auftritte","name":"Auftritte","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"8"},{"id":"hat_probleme_tn_gewinnung","name":"hat_probleme_tn_gewinnung","type":"character","show":false,"footerStyle":{"fontWeight":"bold"}},{"id":"avg_alter","name":"Durch-<br>schnitts-<br>alter*","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"17","html":true}],"dataKey":"62c1de4f7c5819188dcd99ac37c146cd"},"children":[]},"class":"reactR_markup"},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-1-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-1-2-tab">
<div id="htmlwidget-4e7accecef2983e1b0da" class="reactable html-widget html-fill-item" style="width:auto;height:auto;">
</div>
<script type="application/json" data-for="htmlwidget-4e7accecef2983e1b0da">{"x":{"tag":{"name":"Reactable","attribs":{"data":{"og_name":["2.0.","Brandenburg","Frankfurt (Oder)","Zeuthen"],"hat_hauptamt":["Nein","Weiß ich nicht","Ja","Nein"],"anzahl_insg":[27,14,29,16],"anzahl_tn":[10,8,17,13],"anzahl_ma_leitung":[17,6,12,3],"auftritte":[3,1,12,1],"hat_probleme_tn_gewinnung":["Ja, aber nur phasenweise","Ja, sehr große Probleme","Ja, aber nur phasenweise","Ja, sehr große Probleme"],"avg_alter":[21,"NA",16,17]},"columns":[{"id":"og_name","name":"Orts-<br>gruppe","type":"character","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"Summe / <br> Gesamt","html":true},{"id":"hat_hauptamt","name":"Hauptamt","type":"character","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"1"},{"id":"anzahl_insg","name":"Aktive","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"86"},{"id":"anzahl_tn","name":"Teiln.","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"48"},{"id":"anzahl_ma_leitung","name":"Mitarb.","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"38"},{"id":"auftritte","name":"Auftritte","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"17"},{"id":"hat_probleme_tn_gewinnung","name":"hat_probleme_tn_gewinnung","type":"character","show":false,"footerStyle":{"fontWeight":"bold"}},{"id":"avg_alter","name":"Durch-<br>schnitts-<br>alter*","type":"numeric","show":true,"footerStyle":{"fontWeight":"bold"},"footer":"17","html":true}],"dataKey":"fdf32a1d883b4f715be341fea9445db4"},"children":[]},"class":"reactR_markup"},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-2-contents" aria-controls="callout-2" aria-expanded="true" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Erklärung
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-2" class="callout-2-contents callout-collapse collapse show">
<div class="callout-body-container callout-body">
<ul>
<li><p><strong>Teilnehmende</strong> sind alle, die sich in den Ortsgruppen engagieren und an TEN SING Veranstaltungen teilnehmen, und dabei keine offizielle Leitungsfunktion übernehmen.</p></li>
<li><p><strong>Mitarbeitende</strong> sind alle hauptamtlichen Mitarbeiter*innen in den Ortsgruppen und Ehrenamtlichen, die eine Verantwortungsfunktion übernehmen.</p></li>
<li><p>Zusätzlich gibt die Spalte <strong>“Hauptamt”</strong> an, ob eine Ortsgruppe hauptamtliche Mitarbeitende hat.</p></li>
<li><p>Die <strong>Aktiven</strong> sind alle Teilnehmenden und Mitarbeitenden zusammen.</p></li>
</ul>
</div>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-3-contents" aria-controls="callout-3" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-3" class="callout-3-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>⚠️ Durchschnittsalter:</p>
<ul>
<li><p>Für Ortsgruppen, in denen weniger als 3 Personen die Umfrage beantwortet haben, wird aus Datenschutzgründen kein Durchschnittsalter angezeigt.</p></li>
<li><p>Der Gesamt-Durchschnitt ist ein <em>gewichteter Mittelwert</em>. Ortsgruppen mit mehr Teilnehmenden beeinflussen den Wert stärker als solche mit wenigen.</p></li>
</ul>
<p>Relevante Fragen:</p>
<ul>
<li><strong>Frage</strong> “<em>In welcher Region liegt deine Ortsgruppe?</em>” im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a></li>
<li><strong>Frage</strong> “<em>Wie heißt deine Ortsgruppe?</em>” im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a></li>
<li><strong>Frage</strong> “<em>Wie heißt deine Ortsgruppe?</em>” im <a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a></li>
</ul>
<table class="caption-top table">
<thead>
<tr class="header">
<th>Fragebogen</th>
<th>Teilnehmer*innen</th>
<th>Mitarbeitende</th>
<th>Insgesamt</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td><a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a></td>
<td>6</td>
<td>10</td>
<td>16<sup>1</sup></td>
</tr>
<tr class="even">
<td><a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a></td>
<td>40</td>
<td>46</td>
<td>86</td>
</tr>
</tbody>
</table>
<p><sup>1</sup>: Anzahl der Antworten auf den <a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a></p>
</div>
</div>
</div>
<section id="angebote-in-den-ortsgruppen" class="level1">
<h1>Angebote in den Ortsgruppen</h1>
<p>Im Folgenden seht ihr, welche Workshops in welcher Ortsgruppe angeboten werden.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-2-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-1" role="tab" aria-controls="tabset-2-1" aria-selected="true" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-2" role="tab" aria-controls="tabset-2-2" aria-selected="false" href="">2024</a></li></ul>
<div class="tab-content">
<div id="tabset-2-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-2-1-tab">
<div id="htmlwidget-6c3c6945ad1979bfa67a" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-6c3c6945ad1979bfa67a">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5' viewBox='0 0 648 432'>\n <defs id='svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_defs'>\n <clipPath id='svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_c1'>\n <rect x='0' y='0' width='648' height='432'/>\n <\/clipPath>\n <clipPath id='svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_c2'>\n <rect x='0' y='78.71' width='648' height='274.57'/>\n <\/clipPath>\n <clipPath id='svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_c3'>\n <rect x='78.61' y='104.44' width='563.42' height='160.98'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_c1)'>\n <rect x='0' y='0' width='648' height='432' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_c3)'>\n <text x='101.29' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='151.6' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='201.9' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='302.51' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='352.82' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='403.12' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='453.43' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='503.73' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='604.34' y='244.73' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='101.29' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='151.6' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='201.9' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='302.51' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='352.82' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='403.12' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='453.43' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='503.73' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='604.34' y='194.42' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='101.29' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='151.6' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='201.9' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='302.51' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='352.82' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='403.12' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='453.43' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='503.73' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='604.34' y='144.12' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <\/g>\n <g clip-path='url(#svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5_c1)'>\n <text x='57.82' y='238.43' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>2.0.<\/text>\n <text x='5.98' y='188.13' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Frankfurt (Oder)<\/text>\n <text x='38.34' y='137.82' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Zeuthen<\/text>\n <text transform='translate(57.97,330.67) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>andere Workshops<\/text>\n <text transform='translate(148.33,290.62) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Band<\/text>\n <text transform='translate(199.73,289.52) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Chor<\/text>\n <text transform='translate(193.55,346.00) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Dirigieren / Chorleitung<\/text>\n <text transform='translate(293.69,296.18) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Kreativ<\/text>\n <text transform='translate(342.57,297.60) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Medien<\/text>\n <text transform='translate(400.55,289.93) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Orga<\/text>\n <text transform='translate(427.08,313.70) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Solo-Gesang<\/text>\n <text transform='translate(501.59,289.50) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Tanz<\/text>\n <text transform='translate(542.63,298.76) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Technik<\/text>\n <text transform='translate(593.50,298.19) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Theater<\/text>\n <text x='182.77' y='95.38' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Welche Workshops werden vor Ort angeboten?<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_86138a64_4d44_4c36_a7bc_8800fc9cbdd5","ratio":1.5,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-2-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-2-tab">
<div id="htmlwidget-f41e6f301b1d871fe408" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-f41e6f301b1d871fe408">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e' viewBox='0 0 648 432'>\n <defs id='svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_defs'>\n <clipPath id='svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_c1'>\n <rect x='0' y='0' width='648' height='432'/>\n <\/clipPath>\n <clipPath id='svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_c2'>\n <rect x='0' y='53.56' width='648' height='324.88'/>\n <\/clipPath>\n <clipPath id='svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_c3'>\n <rect x='78.61' y='79.28' width='563.42' height='211.28'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_c1)'>\n <rect x='0' y='0' width='648' height='432' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_c3)'>\n <text x='101.29' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='151.6' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='201.9' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='302.51' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='352.82' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='403.12' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='453.43' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='503.73' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='604.34' y='118.97' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='101.29' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='151.6' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='201.9' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='302.51' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='352.82' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='403.12' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='453.43' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='503.73' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='604.34' y='219.58' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='101.29' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='151.6' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='201.9' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='302.51' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='352.82' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='403.12' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='453.43' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='503.73' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='604.34' y='169.27' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='101.29' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#A4A4A4' fill-opacity='1'>✗<\/text>\n <text x='151.6' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='201.9' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='252.21' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='302.51' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='352.82' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='403.12' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='453.43' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='503.73' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='554.04' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <text x='604.34' y='269.88' font-size='21.34pt' font-weight='bold' font-family='Atkinson Hyperlegible' fill='#2CA02C' fill-opacity='1'>✓<\/text>\n <\/g>\n <g clip-path='url(#svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e_c1)'>\n <text x='57.82' y='263.59' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>2.0.<\/text>\n <text x='18.73' y='213.28' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Brandenburg<\/text>\n <text x='5.98' y='162.98' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Frankfurt (Oder)<\/text>\n <text x='38.34' y='112.67' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Zeuthen<\/text>\n <text transform='translate(57.97,355.82) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>andere Workshops<\/text>\n <text transform='translate(148.33,315.77) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Band<\/text>\n <text transform='translate(199.73,314.68) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Chor<\/text>\n <text transform='translate(193.55,371.16) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Dirigieren / Chorleitung<\/text>\n <text transform='translate(293.69,321.33) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Kreativ<\/text>\n <text transform='translate(342.57,322.76) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Medien<\/text>\n <text transform='translate(400.55,315.08) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Orga<\/text>\n <text transform='translate(427.08,338.85) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Solo-Gesang<\/text>\n <text transform='translate(501.59,314.65) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Tanz<\/text>\n <text transform='translate(542.63,323.92) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Technik<\/text>\n <text transform='translate(593.50,323.35) rotate(-45.00)' font-size='7.2pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Theater<\/text>\n <text x='182.77' y='70.23' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Welche Workshops werden vor Ort angeboten?<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_f7c44aae_c67f_4b32_9d35_0c4dac45581e","ratio":1.5,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-4-contents" aria-controls="callout-4" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-4" class="callout-4-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><strong>Relevante Frage</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a>:</p>
<ul>
<li>“<em>An welchen Angeboten/Workshops nimmst du vor Ort teil?</em>”</li>
</ul>
<p><strong>Relevante Frage</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a>:</p>
<ul>
<li>“<em>Welche Workshops werden bei euch vor Ort angeboten?</em>”</li>
</ul>
</div>
</div>
</div>
<p>Zusätzlich wollten wir von euch wissen, an welchen Workshops ihr teilnehmt! So habt ihr geantwortet:</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-3-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-1" role="tab" aria-controls="tabset-3-1" aria-selected="true" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-2" role="tab" aria-controls="tabset-3-2" aria-selected="false" href="">2024</a></li></ul>
<div class="tab-content">
<div id="tabset-3-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-3-1-tab">
<div id="htmlwidget-daa5c4637e944650bd70" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-daa5c4637e944650bd70">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee' viewBox='0 0 648 432'>\n <defs id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_defs'>\n <clipPath id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_c1'>\n <rect x='0' y='0' width='648' height='432'/>\n <\/clipPath>\n <clipPath id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_c2'>\n <rect x='129.87' y='27.71' width='511.16' height='349.26'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_c1)'>\n <rect x='0' y='0' width='648' height='432' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_c2)'>\n <polyline points='211.19,376.98 211.19,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='327.36,376.98 327.36,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='443.53,376.98 443.53,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='559.71,376.98 559.71,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,358.27 641.03,358.27' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,327.08 641.03,327.08' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,295.90 641.03,295.90' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,264.71 641.03,264.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,233.53 641.03,233.53' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,202.35 641.03,202.35' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,171.16 641.03,171.16' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,139.98 641.03,139.98' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,108.79 641.03,108.79' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,77.61 641.03,77.61' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,46.42 641.03,46.42' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='153.10,376.98 153.10,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='269.28,376.98 269.28,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='385.45,376.98 385.45,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='501.62,376.98 501.62,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='617.79,376.98 617.79,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e1' x='153.1' y='32.39' width='29.04' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='andere Workshops&lt;br/&gt;6,25%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e2' x='153.1' y='63.58' width='116.17' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Band&lt;br/&gt;25%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e3' x='153.1' y='94.76' width='319.47' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Chor&lt;br/&gt;68,75%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e4' x='153.1' y='125.94' width='29.04' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Dirigieren / Chorleitung&lt;br/&gt;6,25%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e5' x='153.1' y='157.13' width='87.13' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Kreativ&lt;br/&gt;18,75%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e6' x='153.1' y='188.31' width='29.04' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Medien&lt;br/&gt;6,25%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e7' x='153.1' y='219.5' width='116.17' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Orga&lt;br/&gt;25%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e8' x='153.1' y='250.68' width='232.34' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Solo-Gesang&lt;br/&gt;50%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e9' x='153.1' y='281.86' width='319.47' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Tanz&lt;br/&gt;68,75%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e10' x='153.1' y='313.05' width='29.04' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Technik&lt;br/&gt;6,25%'/>\n <rect id='svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_e11' x='153.1' y='344.23' width='377.56' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Theater&lt;br/&gt;81,25%'/>\n <\/g>\n <g clip-path='url(#svg_0c6d4c90_1025_4a60_945d_6e35bc891aee_c1)'>\n <text x='85.86' y='362.01' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Theater<\/text>\n <text x='84.92' y='330.82' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Technik<\/text>\n <text x='100.21' y='299.64' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Tanz<\/text>\n <text x='60.28' y='268.45' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Solo-Gesang<\/text>\n <text x='99.51' y='237.27' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Orga<\/text>\n <text x='86.83' y='206.09' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Medien<\/text>\n <text x='89.19' y='174.9' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Kreativ<\/text>\n <text x='6.97' y='143.72' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Dirigieren / Chorleitung<\/text>\n <text x='100.17' y='112.53' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Chor<\/text>\n <text x='98.37' y='81.35' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Band<\/text>\n <text x='32.28' y='50.16' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>andere Workshops<\/text>\n <text x='144.29' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>0%<\/text>\n <text x='257.76' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>25%<\/text>\n <text x='373.37' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>50%<\/text>\n <text x='490.32' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>75%<\/text>\n <text x='603.1' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>100%<\/text>\n <text x='317.22' y='405.73' font-size='10.5pt' font-family='Atkinson Hyperlegible'>% der Teilnehmenden<\/text>\n <text x='85.65' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>An welchen Angeboten nehmen TEN SINGende teil? – Ostwerk<\/text>\n <text x='357.45' y='422.87' font-size='8.4pt' font-family='Atkinson Hyperlegible'>% summieren nicht zu 100, da Mehrfachauswahl möglich.<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_0c6d4c90_1025_4a60_945d_6e35bc891aee","ratio":1.5,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-3-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-2-tab">
<div id="htmlwidget-745c029af494867e76c2" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-745c029af494867e76c2">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b' viewBox='0 0 648 432'>\n <defs id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_defs'>\n <clipPath id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_c1'>\n <rect x='0' y='0' width='648' height='432'/>\n <\/clipPath>\n <clipPath id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_c2'>\n <rect x='129.87' y='27.71' width='511.16' height='349.26'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_c1)'>\n <rect x='0' y='0' width='648' height='432' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_c2)'>\n <polyline points='211.19,376.98 211.19,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='327.36,376.98 327.36,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='443.53,376.98 443.53,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='559.71,376.98 559.71,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,358.27 641.03,358.27' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,327.08 641.03,327.08' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,295.90 641.03,295.90' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,264.71 641.03,264.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,233.53 641.03,233.53' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,202.35 641.03,202.35' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,171.16 641.03,171.16' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,139.98 641.03,139.98' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,108.79 641.03,108.79' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,77.61 641.03,77.61' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='129.87,46.42 641.03,46.42' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='153.10,376.98 153.10,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='269.28,376.98 269.28,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='385.45,376.98 385.45,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='501.62,376.98 501.62,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='617.79,376.98 617.79,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e1' x='153.1' y='32.39' width='0' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='andere Workshops&lt;br/&gt;0%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e2' x='153.1' y='63.58' width='116.17' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Band&lt;br/&gt;25%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e3' x='153.1' y='94.76' width='377.56' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Chor&lt;br/&gt;81,25%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e4' x='153.1' y='125.94' width='87.13' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Dirigieren / Chorleitung&lt;br/&gt;18,75%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e5' x='153.1' y='157.13' width='203.3' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Kreativ&lt;br/&gt;43,75%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e6' x='153.1' y='188.31' width='29.04' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Medien&lt;br/&gt;6,25%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e7' x='153.1' y='219.5' width='116.17' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Orga&lt;br/&gt;25%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e8' x='153.1' y='250.68' width='145.22' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Solo-Gesang&lt;br/&gt;31,25%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e9' x='153.1' y='281.86' width='319.47' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Tanz&lt;br/&gt;68,75%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e10' x='153.1' y='313.05' width='29.04' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Technik&lt;br/&gt;6,25%'/>\n <rect id='svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_e11' x='153.1' y='344.23' width='232.34' height='28.07' fill='#B5C948' fill-opacity='1' stroke='none' title='Theater&lt;br/&gt;50%'/>\n <\/g>\n <g clip-path='url(#svg_644de4d9_c1b9_4ac0_910f_c345a441f71b_c1)'>\n <text x='85.86' y='362.01' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Theater<\/text>\n <text x='84.92' y='330.82' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Technik<\/text>\n <text x='100.21' y='299.64' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Tanz<\/text>\n <text x='60.28' y='268.45' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Solo-Gesang<\/text>\n <text x='99.51' y='237.27' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Orga<\/text>\n <text x='86.83' y='206.09' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Medien<\/text>\n <text x='89.19' y='174.9' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Kreativ<\/text>\n <text x='6.97' y='143.72' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Dirigieren / Chorleitung<\/text>\n <text x='100.17' y='112.53' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Chor<\/text>\n <text x='98.37' y='81.35' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Band<\/text>\n <text x='32.28' y='50.16' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>andere Workshops<\/text>\n <text x='144.29' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>0%<\/text>\n <text x='257.76' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>25%<\/text>\n <text x='373.37' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>50%<\/text>\n <text x='490.32' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>75%<\/text>\n <text x='603.1' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>100%<\/text>\n <text x='317.22' y='405.73' font-size='10.5pt' font-family='Atkinson Hyperlegible'>% der Teilnehmenden<\/text>\n <text x='85.65' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>An welchen Angeboten nehmen TEN SINGende teil? – Ostwerk<\/text>\n <text x='357.45' y='422.87' font-size='8.4pt' font-family='Atkinson Hyperlegible'>% summieren nicht zu 100, da Mehrfachauswahl möglich.<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_644de4d9_c1b9_4ac0_910f_c345a441f71b","ratio":1.5,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-5-contents" aria-controls="callout-5" aria-expanded="true" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Interpretationshilfe
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-5" class="callout-5-contents callout-collapse collapse show">
<div class="callout-body-container callout-body">
<p>Insgesamt 16 Personen haben im Jahr 2025 eine Antwort auf diese Frage gegeben. 13 Personen gaben wiederum an, dass sie gerne am Theaterworkshop/Theaterangebot teilnehmen. 13 von 16 Personen entspricht 81.2% Prozent. Diesen Wert seht ihr im oberen Schaubild visualisiert. Da eine Mehrfachauswahl möglich war, summieren sich die Werte auf mehr als 100%.</p>
</div>
</div>
</div>
<div class="cell">
<div class="cell-output-display">
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-6-contents" aria-controls="callout-6" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-6" class="callout-6-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><strong>Relevante Frage</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a>:</p>
<ul>
<li>“<em>An welchen Angeboten/Workshops nimmst du vor Ort teil?</em>”</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<section id="neue-teilnehmerinnen" class="level2">
<h2 class="anchored" data-anchor-id="neue-teilnehmerinnen">Neue Teilnehmer*innen</h2>
<p>Die Arbeit von TEN SING lebt vom Engagement vieler Menschen. Deshalb ist die Gewinnung neuer Teilnehmer*innen genauso wichtig wie ein beständiges Team. Aus diesem Grund wollten wir wissen, wie neue Teilnehmende zu TEN SING kommen - oder genauer gesagt: zu TEN SING Ostwerk!</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-4-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-1" role="tab" aria-controls="tabset-4-1" aria-selected="true" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-2" role="tab" aria-controls="tabset-4-2" aria-selected="false" href="">2024</a></li></ul>
<div class="tab-content">
<div id="tabset-4-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-4-1-tab">
<div id="htmlwidget-b1fdde8185341ebe6707" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-b1fdde8185341ebe6707">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61' viewBox='0 0 648 432'>\n <defs id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_defs'>\n <clipPath id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_c1'>\n <rect x='0' y='0' width='648' height='432'/>\n <\/clipPath>\n <clipPath id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_c2'>\n <rect x='94.91' y='27.71' width='546.11' height='349.26'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_bc442bb7_883b_4121_b420_af6b93cc7e61_c1)'>\n <rect x='0' y='0' width='648' height='432' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_bc442bb7_883b_4121_b420_af6b93cc7e61_c2)'>\n <polyline points='181.79,376.98 181.79,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='305.91,376.98 305.91,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='430.03,376.98 430.03,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='554.14,376.98 554.14,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,351.42 641.03,351.42' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,308.83 641.03,308.83' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,266.23 641.03,266.23' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,223.64 641.03,223.64' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,181.05 641.03,181.05' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,138.46 641.03,138.46' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,95.86 641.03,95.86' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,53.27 641.03,53.27' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='119.74,376.98 119.74,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='243.85,376.98 243.85,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='367.97,376.98 367.97,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='492.09,376.98 492.09,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='616.20,376.98 616.20,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e1' x='119.74' y='34.1' width='341.32' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Mitgenommen von anderer Person&lt;br/&gt;68,8%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e2' x='119.74' y='76.7' width='124.12' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Aufführung&lt;br/&gt;25,0%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e3' x='119.74' y='247.07' width='0' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Seminar&lt;br/&gt; 0,0%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e4' x='119.74' y='161.88' width='0' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Schnupperprobe&lt;br/&gt; 0,0%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e5' x='119.74' y='204.47' width='93.09' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Angebot von TEN SING in der Schule&lt;br/&gt;18,8%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e6' x='119.74' y='119.29' width='31.03' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Nicht-kirchliche Veranstaltung&lt;br/&gt; 6,2%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e7' x='119.74' y='289.66' width='31.03' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Social Media&lt;br/&gt; 6,2%'/>\n <rect id='svg_bc442bb7_883b_4121_b420_af6b93cc7e61_e8' x='119.74' y='332.25' width='93.09' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Sonstiges&lt;br/&gt;18,8%'/>\n <\/g>\n <g clip-path='url(#svg_bc442bb7_883b_4121_b420_af6b93cc7e61_c1)'>\n <text x='40.11' y='355.16' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Sonstiges<\/text>\n <text x='24.89' y='312.57' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Social Media<\/text>\n <text x='47.63' y='269.97' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Seminar<\/text>\n <text x='55.57' y='227.38' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schule<\/text>\n <text x='6.97' y='184.79' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schnupperprobe<\/text>\n <text x='16.25' y='142.2' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Nicht Kirchlich<\/text>\n <text x='28.37' y='99.6' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Auffuehrung<\/text>\n <text x='16.1' y='57.01' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Andere Person<\/text>\n <text x='103.02' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 0,0%<\/text>\n <text x='225.99' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 25,0%<\/text>\n <text x='349.56' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 50,0%<\/text>\n <text x='474.44' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 75,0%<\/text>\n <text x='596.74' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>100,0%<\/text>\n <text x='299.74' y='405.73' font-size='10.5pt' font-family='Atkinson Hyperlegible'>% der Teilnehmenden<\/text>\n <text x='101.1' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Wie kommen neue Teilnehmende zu TEN SING? – Ostwerk<\/text>\n <text x='357.45' y='422.87' font-size='8.4pt' font-family='Atkinson Hyperlegible'>% summieren nicht zu 100, da Mehrfachauswahl möglich.<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_bc442bb7_883b_4121_b420_af6b93cc7e61","ratio":1.5,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-4-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-2-tab">
<div id="htmlwidget-d952ebf612dd130533f7" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-d952ebf612dd130533f7">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd' viewBox='0 0 648 432'>\n <defs id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_defs'>\n <clipPath id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_c1'>\n <rect x='0' y='0' width='648' height='432'/>\n <\/clipPath>\n <clipPath id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_c2'>\n <rect x='94.91' y='27.71' width='546.11' height='349.26'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_c1)'>\n <rect x='0' y='0' width='648' height='432' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_c2)'>\n <polyline points='181.79,376.98 181.79,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='305.91,376.98 305.91,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='430.03,376.98 430.03,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='554.14,376.98 554.14,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,351.42 641.03,351.42' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,308.83 641.03,308.83' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,266.23 641.03,266.23' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,223.64 641.03,223.64' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,181.05 641.03,181.05' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,138.46 641.03,138.46' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,95.86 641.03,95.86' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='94.91,53.27 641.03,53.27' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='119.74,376.98 119.74,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='243.85,376.98 243.85,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='367.97,376.98 367.97,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='492.09,376.98 492.09,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='616.20,376.98 616.20,27.71' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e1' x='119.74' y='34.1' width='310.29' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Mitgenommen von anderer Person&lt;br/&gt;62,5%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e2' x='119.74' y='76.7' width='186.18' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Aufführung&lt;br/&gt;37,5%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e3' x='119.74' y='247.07' width='31.03' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Seminar&lt;br/&gt; 6,2%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e4' x='119.74' y='161.88' width='31.03' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Schnupperprobe&lt;br/&gt; 6,2%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e5' x='119.74' y='204.47' width='93.09' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Angebot von TEN SING in der Schule&lt;br/&gt;18,8%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e6' x='119.74' y='119.29' width='0' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Nicht-kirchliche Veranstaltung&lt;br/&gt; 0,0%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e7' x='119.74' y='289.66' width='0' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Social Media&lt;br/&gt; 0,0%'/>\n <rect id='svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_e8' x='119.74' y='332.25' width='93.09' height='38.33' fill='#B5C948' fill-opacity='1' stroke='none' title='Sonstiges&lt;br/&gt;18,8%'/>\n <\/g>\n <g clip-path='url(#svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd_c1)'>\n <text x='40.11' y='355.16' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Sonstiges<\/text>\n <text x='24.89' y='312.57' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Social Media<\/text>\n <text x='47.63' y='269.97' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Seminar<\/text>\n <text x='55.57' y='227.38' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schule<\/text>\n <text x='6.97' y='184.79' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schnupperprobe<\/text>\n <text x='16.25' y='142.2' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Nicht Kirchlich<\/text>\n <text x='28.37' y='99.6' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Auffuehrung<\/text>\n <text x='16.1' y='57.01' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Andere Person<\/text>\n <text x='103.02' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 0,0%<\/text>\n <text x='225.99' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 25,0%<\/text>\n <text x='349.56' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 50,0%<\/text>\n <text x='474.44' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'> 75,0%<\/text>\n <text x='596.74' y='390.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>100,0%<\/text>\n <text x='299.74' y='405.73' font-size='10.5pt' font-family='Atkinson Hyperlegible'>% der Teilnehmenden<\/text>\n <text x='101.1' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Wie kommen neue Teilnehmende zu TEN SING? – Ostwerk<\/text>\n <text x='357.45' y='422.87' font-size='8.4pt' font-family='Atkinson Hyperlegible'>% summieren nicht zu 100, da Mehrfachauswahl möglich.<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_abc1e2ca_7e6c_4b97_b6e9_9011b5c2dafd","ratio":1.5,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-7-contents" aria-controls="callout-7" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Interpretationshilfe
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-7" class="callout-7-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<ul>
<li>y-Achse/senkrechte Achse: Antwortoptionen, die ausgewählt werden konnten.</li>
<li>x-Achse/waagerechte Achse: Prozentzahl der Teilnehmer*innen, die diese Option als <em>eine ihrer Antworten</em> ausgewählt haben.</li>
<li>Mehrfachauswahl: Die Prozentzahlen summieren sich im Jahr 2025 auf 143,8%, da mehrere Antworten möglich waren.</li>
</ul>
<p><strong>Beispielinterpretation</strong>: 68.8% der Teilnehmenden gaben im Jahr 2025 <strong>als einen</strong> ihrer Zugangswege zu TEN SING an, von einer anderen Person mitgenommen worden zu sein.</p>
</div>
</div>
</div>
<div class="cell">
<div class="cell-output-display">
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-8-contents" aria-controls="callout-8" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-8" class="callout-8-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><strong>Relevante Frage</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/CXSN64w3">Teilnehmer*innen Fragebogen</a>:</p>
<ul>
<li>“<em>Wie bist du zu TEN SING gekommen?</em>”</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<p>Darüber hinaus wollten wir wissen, wie die Ortsgruppen auf die Gewinnung neuer Teilnehmer*innen blicken, d.h. welche Maßnahmen sie verfolgen und wie erfolgreich diese sind.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-7-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-1" role="tab" aria-controls="tabset-7-1" aria-selected="true" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-2" role="tab" aria-controls="tabset-7-2" aria-selected="false" href="">2024</a></li></ul>
<div class="tab-content">
<div id="tabset-7-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-7-1-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-5-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-1" role="tab" aria-controls="tabset-5-1" aria-selected="true" href="">Maßnahmen</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-2" role="tab" aria-controls="tabset-5-2" aria-selected="false" href="">Erfolg der Maßnahmen</a></li></ul>
<div class="tab-content">
<div id="tabset-5-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-5-1-tab">
<div id="htmlwidget-5eba686008857102dd73" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-5eba686008857102dd73">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1' viewBox='0 0 504 360'>\n <defs id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_defs'>\n <clipPath id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_c1'>\n <rect x='0' y='0' width='504' height='360'/>\n <\/clipPath>\n <clipPath id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_c2'>\n <rect x='126.25' y='46.73' width='370.77' height='258.24'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_c1)'>\n <rect x='0' y='0' width='504' height='360' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_c2)'>\n <polyline points='227.37,304.98 227.37,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='395.91,304.98 395.91,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,283.46 497.03,283.46' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,247.59 497.03,247.59' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,211.72 497.03,211.72' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,175.85 497.03,175.85' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,139.99 497.03,139.99' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,104.12 497.03,104.12' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,68.25 497.03,68.25' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='143.11,304.98 143.11,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='311.64,304.98 311.64,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='480.17,304.98 480.17,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e1' x='143.11' y='231.45' width='337.07' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Anzahl: 2' data-id='Werbung bei unseren Veranstaltungen und Vorführungen_Werbung Auftritte'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e2' x='143.11' y='267.32' width='168.53' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Anzahl: 1' data-id='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)_Werbung Kirche'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e3' x='143.11' y='123.85' width='337.07' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Anzahl: 2' data-id='Schulprojekte (z. B. Projektwochen)_Schulprojekte'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e4' x='143.11' y='87.98' width='0' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Anzahl: 0' data-id='Schnupperproben_Schnupperproben'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e5' x='143.11' y='159.71' width='168.53' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Anzahl: 1' data-id='Werbung auf Social Media (z. B. Instagram, TikTok)_Social Media'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e6' x='143.11' y='52.11' width='337.07' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Anzahl: 2' data-id='Freunde und Bekannte ansprechen_Freunde Und Bekannte'/>\n <rect id='svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_e7' x='143.11' y='195.58' width='0' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Anzahl: 0' data-id='Sonstige_Sonstige'/>\n <\/g>\n <g clip-path='url(#svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1_c1)'>\n <text x='41.25' y='287.2' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Kirche<\/text>\n <text x='32.6' y='251.33' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Auftritte<\/text>\n <text x='76.72' y='215.46' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Sonstige<\/text>\n <text x='56.24' y='179.6' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Social Media<\/text>\n <text x='52.61' y='143.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schulprojekte<\/text>\n <text x='32.21' y='107.86' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schnupperproben<\/text>\n <text x='6.97' y='71.99' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Freunde Und Bekannte<\/text>\n <text x='139.48' y='318.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>0<\/text>\n <text x='309.39' y='318.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>1<\/text>\n <text x='477.1' y='318.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>2<\/text>\n <text x='238.43' y='333.73' font-size='10.5pt' font-family='Atkinson Hyperlegible'>Anzahl der Ortsgruppen<\/text>\n <text x='192.19' y='37.07' font-size='10.5pt' font-family='Atkinson Hyperlegible'>in den Ortsgruppen<\/text>\n <text x='90.4' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Maßnahmen zur Teilnehmendengewinnung<\/text>\n <text x='247.76' y='350.87' font-size='8.4pt' font-family='Atkinson Hyperlegible'>Mehrfachauswahl möglich<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_4fb3703d_9394_45ce_bbf5_5c917dc9a9e1","ratio":1.4,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-5-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-2-tab">
<div id="htmlwidget-44a259604c96294d6b75" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-44a259604c96294d6b75">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_c8e1c677_8e58_4535_b6a4_854a42824702' viewBox='0 0 504 360'>\n <defs id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_defs'>\n <clipPath id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_c1'>\n <rect x='0' y='0' width='504' height='360'/>\n <\/clipPath>\n <clipPath id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_c2'>\n <rect x='126.25' y='46.73' width='370.77' height='240.76'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_c8e1c677_8e58_4535_b6a4_854a42824702_c1)'>\n <rect x='0' y='0' width='504' height='360' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_c8e1c677_8e58_4535_b6a4_854a42824702_c2)'>\n <polyline points='185.24,287.49 185.24,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='269.51,287.49 269.51,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='353.77,287.49 353.77,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='438.04,287.49 438.04,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,267.43 497.03,267.43' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,233.99 497.03,233.99' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,200.55 497.03,200.55' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,167.11 497.03,167.11' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,133.67 497.03,133.67' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,100.24 497.03,100.24' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,66.80 497.03,66.80' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='143.11,287.49 143.11,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='227.37,287.49 227.37,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='311.64,287.49 311.64,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='395.91,287.49 395.91,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='480.17,287.49 480.17,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e1' x='143.11' y='51.75' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e2' x='143.11' y='51.75' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e3' x='143.11' y='51.75' width='0' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 3: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e4' x='143.11' y='51.75' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e5' x='143.11' y='51.75' width='168.53' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 5: 50%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e6' x='311.64' y='51.75' width='168.53' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 50%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e7' x='143.11' y='118.63' width='168.53' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 50%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e8' x='311.64' y='118.63' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e9' x='311.64' y='118.63' width='168.53' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 3: 50%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e10' x='480.17' y='118.63' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e11' x='480.17' y='118.63' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e12' x='480.17' y='118.63' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e13' x='143.11' y='152.06' width='337.07' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 100%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e14' x='480.17' y='152.06' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e15' x='480.17' y='152.06' width='0' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 3: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e16' x='480.17' y='152.06' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e17' x='480.17' y='152.06' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e18' x='480.17' y='152.06' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e19' x='143.11' y='218.94' width='168.53' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 50%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e20' x='311.64' y='218.94' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e21' x='311.64' y='218.94' width='168.53' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 3: 50%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e22' x='480.17' y='218.94' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e23' x='480.17' y='218.94' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e24' x='480.17' y='218.94' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e25' x='143.11' y='252.38' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e26' x='143.11' y='252.38' width='337.07' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Antwortoption 2: 100%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e27' x='480.17' y='252.38' width='0' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Antwortoption 3: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e28' x='480.17' y='252.38' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e29' x='480.17' y='252.38' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_c8e1c677_8e58_4535_b6a4_854a42824702_e30' x='480.17' y='252.38' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <\/g>\n <g clip-path='url(#svg_c8e1c677_8e58_4535_b6a4_854a42824702_c1)'>\n <text x='41.25' y='271.17' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Kirche<\/text>\n <text x='32.6' y='237.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Auftritte<\/text>\n <text x='76.72' y='204.29' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Sonstige<\/text>\n <text x='56.24' y='170.85' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Social Media<\/text>\n <text x='52.61' y='137.41' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schulprojekte<\/text>\n <text x='32.21' y='103.98' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schnupperproben<\/text>\n <text x='6.97' y='70.54' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Freunde Und Bekannte<\/text>\n <text x='134.29' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>0%<\/text>\n <text x='215.85' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>25%<\/text>\n <text x='299.57' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>50%<\/text>\n <text x='384.6' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>75%<\/text>\n <text x='465.48' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>100%<\/text>\n <rect x='136.06' y='325.03' width='15.86' height='20.31' fill='#1F2A4F' fill-opacity='1' stroke='none'/>\n <rect x='234.7' y='325.03' width='15.86' height='20.31' fill='#3D4A4E' fill-opacity='1' stroke='none'/>\n <rect x='272.07' y='325.03' width='15.86' height='20.31' fill='#5B6A4C' fill-opacity='1' stroke='none'/>\n <rect x='309.72' y='325.03' width='15.86' height='20.31' fill='#79894B' fill-opacity='1' stroke='none'/>\n <rect x='347.82' y='325.03' width='15.86' height='20.31' fill='#97A949' fill-opacity='1' stroke='none'/>\n <rect x='385.57' y='325.03' width='15.86' height='20.31' fill='#B5C948' fill-opacity='1' stroke='none'/>\n <text x='159.61' y='332.88' font-size='8.4pt' font-family='Atkinson Hyperlegible'>Gar nicht<\/text>\n <text x='159.61' y='344.98' font-size='8.4pt' font-family='Atkinson Hyperlegible'>erfolgreich (1)<\/text>\n <text x='258.25' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>2<\/text>\n <text x='295.62' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>3<\/text>\n <text x='333.27' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>4<\/text>\n <text x='371.36' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>5<\/text>\n <text x='409.12' y='332.88' font-size='8.4pt' font-family='Atkinson Hyperlegible'>Sehr erfolgreich<\/text>\n <text x='409.12' y='344.98' font-size='8.4pt' font-family='Atkinson Hyperlegible'>(6)<\/text>\n <text x='192.19' y='37.07' font-size='10.5pt' font-family='Atkinson Hyperlegible'>in den Ortsgruppen<\/text>\n <text x='50.58' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Erfolg der Maßnahmen zur Teilnehmendengewinnung<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_c8e1c677_8e58_4535_b6a4_854a42824702","ratio":1.4,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
</div>
<div id="tabset-7-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-2-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-6-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-1" role="tab" aria-controls="tabset-6-1" aria-selected="true" href="">Maßnahmen</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-2" role="tab" aria-controls="tabset-6-2" aria-selected="false" href="">Erfolg der Maßnahmen</a></li></ul>
<div class="tab-content">
<div id="tabset-6-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-6-1-tab">
<div id="htmlwidget-4a6a6fb50d05c8901ed9" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-4a6a6fb50d05c8901ed9">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844' viewBox='0 0 504 360'>\n <defs id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_defs'>\n <clipPath id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_c1'>\n <rect x='0' y='0' width='504' height='360'/>\n <\/clipPath>\n <clipPath id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_c2'>\n <rect x='126.25' y='46.73' width='370.77' height='258.24'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_c1)'>\n <rect x='0' y='0' width='504' height='360' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_c2)'>\n <polyline points='227.37,304.98 227.37,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='395.91,304.98 395.91,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,283.46 497.03,283.46' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,247.59 497.03,247.59' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,211.72 497.03,211.72' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,175.85 497.03,175.85' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,139.99 497.03,139.99' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,104.12 497.03,104.12' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,68.25 497.03,68.25' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='143.11,304.98 143.11,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='311.64,304.98 311.64,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='480.17,304.98 480.17,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e1' x='143.11' y='231.45' width='337.07' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Anzahl: 2' data-id='Werbung bei unseren Veranstaltungen und Vorführungen_Werbung Auftritte'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e2' x='143.11' y='267.32' width='0' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)&lt;br/&gt;Anzahl: 0' data-id='Werbung bei Veranstaltungen der Kirchengemeinde (z. B. Veranstaltungen in der Konfirmandenarbeit)_Werbung Kirche'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e3' x='143.11' y='123.85' width='337.07' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Anzahl: 2' data-id='Schulprojekte (z. B. Projektwochen)_Schulprojekte'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e4' x='143.11' y='87.98' width='168.53' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Anzahl: 1' data-id='Schnupperproben_Schnupperproben'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e5' x='143.11' y='159.71' width='168.53' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Anzahl: 1' data-id='Werbung auf Social Media (z. B. Instagram, TikTok)_Social Media'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e6' x='143.11' y='52.11' width='337.07' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Anzahl: 2' data-id='Freunde und Bekannte ansprechen_Freunde Und Bekannte'/>\n <rect id='svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_e7' x='143.11' y='195.58' width='168.53' height='32.28' fill='#B5C948' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Anzahl: 1' data-id='Sonstige_Sonstige'/>\n <\/g>\n <g clip-path='url(#svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844_c1)'>\n <text x='41.25' y='287.2' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Kirche<\/text>\n <text x='32.6' y='251.33' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Auftritte<\/text>\n <text x='76.72' y='215.46' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Sonstige<\/text>\n <text x='56.24' y='179.6' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Social Media<\/text>\n <text x='52.61' y='143.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schulprojekte<\/text>\n <text x='32.21' y='107.86' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schnupperproben<\/text>\n <text x='6.97' y='71.99' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Freunde Und Bekannte<\/text>\n <text x='139.48' y='318.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>0<\/text>\n <text x='309.39' y='318.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>1<\/text>\n <text x='477.1' y='318.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>2<\/text>\n <text x='238.43' y='333.73' font-size='10.5pt' font-family='Atkinson Hyperlegible'>Anzahl der Ortsgruppen<\/text>\n <text x='192.19' y='37.07' font-size='10.5pt' font-family='Atkinson Hyperlegible'>in den Ortsgruppen<\/text>\n <text x='90.4' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Maßnahmen zur Teilnehmendengewinnung<\/text>\n <text x='247.76' y='350.87' font-size='8.4pt' font-family='Atkinson Hyperlegible'>Mehrfachauswahl möglich<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_30de0ab7_5610_4ac6_936f_57e4e9ba8844","ratio":1.4,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-6-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-2-tab">
<div id="htmlwidget-bc2e6757680c60d4d577" class="girafe html-widget html-fill-item" style="width:100%;height:338px;">
</div>
<script type="application/json" data-for="htmlwidget-bc2e6757680c60d4d577">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_070f0d81_c97a_4fcd_911c_22b459512b69' viewBox='0 0 504 360'>\n <defs id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_defs'>\n <clipPath id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_c1'>\n <rect x='0' y='0' width='504' height='360'/>\n <\/clipPath>\n <clipPath id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_c2'>\n <rect x='126.25' y='46.73' width='370.77' height='240.76'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_070f0d81_c97a_4fcd_911c_22b459512b69_c1)'>\n <rect x='0' y='0' width='504' height='360' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_070f0d81_c97a_4fcd_911c_22b459512b69_c2)'>\n <polyline points='185.24,287.49 185.24,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='269.51,287.49 269.51,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='353.77,287.49 353.77,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='438.04,287.49 438.04,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='0.68' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,267.43 497.03,267.43' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,233.99 497.03,233.99' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,200.55 497.03,200.55' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,167.11 497.03,167.11' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,133.67 497.03,133.67' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,100.24 497.03,100.24' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='126.25,66.80 497.03,66.80' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='143.11,287.49 143.11,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='227.37,287.49 227.37,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='311.64,287.49 311.64,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='395.91,287.49 395.91,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <polyline points='480.17,287.49 480.17,46.73' fill='none' stroke='#EBEBEB' stroke-opacity='1' stroke-width='1.36' stroke-linejoin='round' stroke-linecap='butt'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e1' x='143.11' y='51.75' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e2' x='143.11' y='51.75' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e3' x='143.11' y='51.75' width='168.53' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 3: 50%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e4' x='311.64' y='51.75' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e5' x='311.64' y='51.75' width='168.53' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption 5: 50%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e6' x='480.17' y='51.75' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Freunde und Bekannte ansprechen&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e7' x='143.11' y='85.19' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e8' x='143.11' y='85.19' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e9' x='143.11' y='85.19' width='337.07' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Antwortoption 3: 100%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e10' x='480.17' y='85.19' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e11' x='480.17' y='85.19' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e12' x='480.17' y='85.19' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Schnupperproben&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e13' x='143.11' y='118.63' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e14' x='143.11' y='118.63' width='168.53' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 2: 50%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e15' x='311.64' y='118.63' width='168.53' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 3: 50%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e16' x='480.17' y='118.63' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e17' x='480.17' y='118.63' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e18' x='480.17' y='118.63' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Schulprojekte (z. B. Projektwochen)&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e19' x='143.11' y='185.5' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e20' x='143.11' y='185.5' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e21' x='143.11' y='185.5' width='0' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Antwortoption 3: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e22' x='143.11' y='185.5' width='337.07' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Antwortoption 4: 100%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e23' x='480.17' y='185.5' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e24' x='480.17' y='185.5' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Sonstige&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e25' x='143.11' y='152.06' width='337.07' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 100%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e26' x='480.17' y='152.06' width='0' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 2: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e27' x='480.17' y='152.06' width='0' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 3: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e28' x='480.17' y='152.06' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e29' x='480.17' y='152.06' width='0' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption 5: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e30' x='480.17' y='152.06' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung auf Social Media (z. B. Instagram, TikTok)&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e31' x='143.11' y='218.94' width='0' height='30.09' fill='#1F2A4F' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption Gar nicht erfolgreich (1): 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e32' x='143.11' y='218.94' width='168.53' height='30.09' fill='#3D4A4E' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 2: 50%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e33' x='311.64' y='218.94' width='0' height='30.09' fill='#5B6A4C' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 3: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e34' x='311.64' y='218.94' width='0' height='30.09' fill='#79894B' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 4: 0%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e35' x='311.64' y='218.94' width='168.53' height='30.09' fill='#97A949' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption 5: 50%'/>\n <rect id='svg_070f0d81_c97a_4fcd_911c_22b459512b69_e36' x='480.17' y='218.94' width='0' height='30.09' fill='#B5C948' fill-opacity='1' stroke='none' title='Werbung bei unseren Veranstaltungen und Vorführungen&lt;br/&gt;Antwortoption Sehr erfolgreich (6): 0%'/>\n <\/g>\n <g clip-path='url(#svg_070f0d81_c97a_4fcd_911c_22b459512b69_c1)'>\n <text x='41.25' y='271.17' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Kirche<\/text>\n <text x='32.6' y='237.73' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Werbung Auftritte<\/text>\n <text x='76.72' y='204.29' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Sonstige<\/text>\n <text x='56.24' y='170.85' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Social Media<\/text>\n <text x='52.61' y='137.41' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schulprojekte<\/text>\n <text x='32.21' y='103.98' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Schnupperproben<\/text>\n <text x='6.97' y='70.54' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>Freunde Und Bekannte<\/text>\n <text x='134.29' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>0%<\/text>\n <text x='215.85' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>25%<\/text>\n <text x='299.57' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>50%<\/text>\n <text x='384.6' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>75%<\/text>\n <text x='465.48' y='301.25' font-size='8.4pt' font-family='Atkinson Hyperlegible' fill='#4D4D4D' fill-opacity='1'>100%<\/text>\n <rect x='136.06' y='325.03' width='15.86' height='20.31' fill='#1F2A4F' fill-opacity='1' stroke='none'/>\n <rect x='234.7' y='325.03' width='15.86' height='20.31' fill='#3D4A4E' fill-opacity='1' stroke='none'/>\n <rect x='272.07' y='325.03' width='15.86' height='20.31' fill='#5B6A4C' fill-opacity='1' stroke='none'/>\n <rect x='309.72' y='325.03' width='15.86' height='20.31' fill='#79894B' fill-opacity='1' stroke='none'/>\n <rect x='347.82' y='325.03' width='15.86' height='20.31' fill='#97A949' fill-opacity='1' stroke='none'/>\n <rect x='385.57' y='325.03' width='15.86' height='20.31' fill='#B5C948' fill-opacity='1' stroke='none'/>\n <text x='159.61' y='332.88' font-size='8.4pt' font-family='Atkinson Hyperlegible'>Gar nicht<\/text>\n <text x='159.61' y='344.98' font-size='8.4pt' font-family='Atkinson Hyperlegible'>erfolgreich (1)<\/text>\n <text x='258.25' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>2<\/text>\n <text x='295.62' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>3<\/text>\n <text x='333.27' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>4<\/text>\n <text x='371.36' y='338.93' font-size='8.4pt' font-family='Atkinson Hyperlegible'>5<\/text>\n <text x='409.12' y='332.88' font-size='8.4pt' font-family='Atkinson Hyperlegible'>Sehr erfolgreich<\/text>\n <text x='409.12' y='344.98' font-size='8.4pt' font-family='Atkinson Hyperlegible'>(6)<\/text>\n <text x='192.19' y='37.07' font-size='10.5pt' font-family='Atkinson Hyperlegible'>in den Ortsgruppen<\/text>\n <text x='50.58' y='17.67' font-size='12pt' font-weight='bold' font-family='Atkinson Hyperlegible'>Erfolg der Maßnahmen zur Teilnehmendengewinnung<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_070f0d81_c97a_4fcd_911c_22b459512b69","ratio":1.4,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cell">
<div class="cell-output-display">
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-9-contents" aria-controls="callout-9" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-9" class="callout-9-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><strong>Relevante Fragen</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a>:</p>
<ul>
<li>“<em>Welche Maßnahmen setzt ihr vor Ort ein, um neue Teilnehmende zu finden?</em>”</li>
<li>“<em>Wie erfolgreich sind eure Maßnahmen zu Gewinnung von neuen Teilnehmenden?</em>”</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section id="unterstützungsbedarfe-der-ortsgruppen" class="level1">
<h1>Unterstützungsbedarfe der Ortsgruppen</h1>
<p>Um eure Ortsgruppe gezielt unterstützen zu können, bspw. bei der Gewinnung neuer Teilnehmender, und um Bedarfe besser erkennen zu können, wollten wir von euch wissen: Gibt es bei euch vor Ort gerade Probleme neue Teilnehmende zu finden? Was läuft gut? Und an welcher Stelle wünscht ihr euch, Unterstützung zu bekommen?</p>
<section id="gibt-es-gerade-probleme-neue-teilnehmende-zu-finden" class="level3">
<h3 class="anchored" data-anchor-id="gibt-es-gerade-probleme-neue-teilnehmende-zu-finden">Gibt es gerade Probleme neue Teilnehmende zu finden?</h3>
<p>Hier seht ihr die Antworten der Ortsgruppen. Wenn Vorjahresdaten vorhanden sind, werden euch das aktuelle und letzte Jahr angezeigt.</p>
<div class="reactable html-widget html-fill-item" id="htmlwidget-06da80eec15e7ec1fd00" style="width:auto;height:auto;"></div>
<script type="application/json" data-for="htmlwidget-06da80eec15e7ec1fd00">{"x":{"tag":{"name":"Reactable","attribs":{"data":{"choice":["Ja, sehr große Probleme","Ja, aber nur phasenweise","Nein"],"curr":[0,100,0],"prev":[50,50,0]},"columns":[{"id":"choice","name":"Gibt es Probleme neue Teilnehmende zu finden?","type":"character"},{"id":"curr","name":"2025","type":"numeric","format":{"cell":{"suffix":"%","digits":0},"aggregated":{"suffix":"%","digits":0}}},{"id":"prev","name":"2024","type":"numeric","format":{"cell":{"suffix":"%","digits":0},"aggregated":{"suffix":"%","digits":0}}}],"columnGroups":[{"name":"Anteil der Ortsgruppen in %","columns":["curr","prev"]}],"sortable":false,"highlight":true,"striped":true,"dataKey":"7e7ca307a437d318024273dd4a011639"},"children":[]},"class":"reactR_markup"},"evals":[],"jsHooks":[]}</script>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-10-contents" aria-controls="callout-10" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-10" class="callout-10-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><strong>Relevante Frage</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a>:</p>
<ul>
<li>“<em>Gibt es bei euch vor Ort gerade Probleme neue Teilnehmende zu finden?</em>”</li>
</ul>
</div>
</div>
</div>
</section>
<section id="an-welcher-stelle-gibt-es-unterstützungsbedarfe" class="level3">
<h3 class="anchored" data-anchor-id="an-welcher-stelle-gibt-es-unterstützungsbedarfe">An welcher Stelle gibt es Unterstützungsbedarfe?</h3>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-8-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-1" role="tab" aria-controls="tabset-8-1" aria-selected="true" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-2" role="tab" aria-controls="tabset-8-2" aria-selected="false" href="">2024</a></li></ul>
<div class="tab-content">
<div id="tabset-8-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-8-1-tab">
<div id="htmlwidget-ed0e3f8440a8e689b647" class="reactable html-widget html-fill-item" style="width:auto;height:auto;">
</div>
<script type="application/json" data-for="htmlwidget-ed0e3f8440a8e689b647">{"x":{"tag":{"name":"Reactable","attribs":{"data":{"bedarf":["Angebot von deutschlandweiten Seminaren / Workshops","Austausch von Chorsätzen","Einheitliche Kommunikations- und Cloudspeicher-Plattform","Gewinnung von neuen Teilnehmenden","Internationale Zusammenarbeit","Schulung von Teamern / Ehrenamtlichen","Standpunkte bzw. Hilfestellungen zu bestimmten Themen (z. B. Diversity)","Öffentlichkeitsarbeit / Social Media"],"bedarf_mean":[1.5,1,2,"NaN",2,0,1.5,1.5],"bedarf_label":["mittel","gering","mittel",null,"mittel",null,"mittel","mittel"],"erklärung":["Der Bedarf ist mittel und über die Ortsgruppen hinweg relativ einheitlich.","Der Bedarf ist gering und über die Ortsgruppen hinweg relativ einheitlich.","Der Bedarf ist mittel und über die Ortsgruppen hinweg relativ einheitlich.","Nicht genug Informationen *","Der Bedarf ist mittel aber variiert zwischen den Ortsgruppen.","Nicht genug Informationen *","Der Bedarf ist mittel und über die Ortsgruppen hinweg relativ einheitlich.","Der Bedarf ist mittel und über die Ortsgruppen hinweg relativ einheitlich."]},"columns":[{"id":"bedarf","name":"","type":"character"},{"id":"bedarf_mean","name":"bedarf_mean","type":"numeric","show":false},{"id":"bedarf_label","name":"⌀ Bedarf","type":"factor","cell":[{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]},{"name":"span","attribs":{"className":"badge bg-success"},"children":["gering"]},{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]},null,{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]},null,{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]},{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]}]},{"id":"erklärung","name":"Erklärung","type":"character"}],"dataKey":"b0a525289ddaa96487a8cadca21a50f2"},"children":[]},"class":"reactR_markup"},"evals":[],"jsHooks":[]}</script>
</div>
<div id="tabset-8-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-2-tab">
<div id="htmlwidget-e4bef1a7d9a32ad5d554" class="reactable html-widget html-fill-item" style="width:auto;height:auto;">
</div>
<script type="application/json" data-for="htmlwidget-e4bef1a7d9a32ad5d554">{"x":{"tag":{"name":"Reactable","attribs":{"data":{"bedarf":["Angebot von deutschlandweiten Seminaren / Workshops","Austausch von Chorsätzen","Einheitliche Kommunikations- und Cloudspeicher-Plattform","Gewinnung von neuen Teilnehmenden","Internationale Zusammenarbeit","Schulung von Teamern / Ehrenamtlichen","Standpunkte bzw. Hilfestellungen zu bestimmten Themen (z. B. Diversity)","Öffentlichkeitsarbeit / Social Media"],"bedarf_mean":[1,2.66666666666667,2.33333333333333,3,2.25,2.66666666666667,2,1.75],"bedarf_label":["gering","hoch","hoch","hoch","hoch","hoch","mittel","mittel"],"erklärung":["Der Bedarf ist gering aber variiert zwischen den Ortsgruppen.","Der Bedarf ist hoch und über die Ortsgruppen hinweg relativ einheitlich.","Der Bedarf ist hoch aber variiert zwischen den Ortsgruppen.","Der Bedarf ist hoch und über die Ortsgruppen hinweg relativ einheitlich.","Der Bedarf ist hoch aber variiert zwischen den Ortsgruppen.","Der Bedarf ist hoch und über die Ortsgruppen hinweg relativ einheitlich.","Der Bedarf ist mittel aber variiert zwischen den Ortsgruppen.","Der Bedarf ist mittel aber variiert zwischen den Ortsgruppen."]},"columns":[{"id":"bedarf","name":"","type":"character"},{"id":"bedarf_mean","name":"bedarf_mean","type":"numeric","show":false},{"id":"bedarf_label","name":"⌀ Bedarf","type":"factor","cell":[{"name":"span","attribs":{"className":"badge bg-success"},"children":["gering"]},{"name":"span","attribs":{"className":"badge bg-danger"},"children":["hoch"]},{"name":"span","attribs":{"className":"badge bg-danger"},"children":["hoch"]},{"name":"span","attribs":{"className":"badge bg-danger"},"children":["hoch"]},{"name":"span","attribs":{"className":"badge bg-danger"},"children":["hoch"]},{"name":"span","attribs":{"className":"badge bg-danger"},"children":["hoch"]},{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]},{"name":"span","attribs":{"className":"badge bg-warning"},"children":["mittel"]}]},{"id":"erklärung","name":"Erklärung","type":"character"}],"dataKey":"c1cf431be5a67c84f8ad4c229635b3a2"},"children":[]},"class":"reactR_markup"},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".callout-11-contents" aria-controls="callout-11" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Datenquellen
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-11" class="callout-11-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><strong>Relevante Frage</strong> im <a href="https://ee-eu.kobotoolbox.org/preview/Xn6yUxMT">Ortsgruppen Fragebogen</a>:</p>
<ul>
<li>“<em>Bei welchen Themen würdet ihr gern Unterstützung oder Begleitung nutzen?</em>”</li>
</ul>
<p>⚠️ * <em>Nicht genug Informationen</em> heißt entweder, dass diese Frage von den Ortsgruppen gar nicht oder mit ‘Bin mir unsicher’ ausgefüllt wurde.</p>
</div>
</div>
</div>
</section>
</section>
</main>
<!-- /main column -->
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
const mode = bsSheetEl.getAttribute("data-mode");
const bodyEl = window.document.querySelector("body");
if (mode === "dark") {
bodyEl.classList.add("quarto-dark");
bodyEl.classList.remove("quarto-light");
} else {
bodyEl.classList.add("quarto-light");
bodyEl.classList.remove("quarto-dark");
}
}
const toggleBodyColorPrimary = () => {
const bsSheetEl = window.document.querySelector("link#quarto-bootstrap");
if (bsSheetEl) {
toggleBodyColorMode(bsSheetEl);
}
}
toggleBodyColorPrimary();
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const onCopySuccess = function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
}
const getTextToCopy = function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
text: getTextToCopy
});
clipboard.on('success', onCopySuccess);
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
// For code content inside modals, clipBoardJS needs to be initialized with a container option
// TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860)
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
text: getTextToCopy,
container: window.document.getElementById('quarto-embedded-source-code-modal')
});
clipboardModal.on('success', onCopySuccess);
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start',
};
if (contentFn) {
config.content = contentFn;
}
if (onTriggerFn) {
config.onTrigger = onTriggerFn;
}
if (onUntriggerFn) {
config.onUntrigger = onUntriggerFn;
}
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
const processXRef = (id, note) => {
// Strip column container classes
const stripColumnClz = (el) => {
el.classList.remove("page-full", "page-columns");
if (el.children) {
for (const child of el.children) {
stripColumnClz(child);
}
}
}
stripColumnClz(note)
if (id === null || id.startsWith('sec-')) {
// Special case sections, only their first couple elements
const container = document.createElement("div");
if (note.children && note.children.length > 2) {
container.appendChild(note.children[0].cloneNode(true));
for (let i = 1; i < note.children.length; i++) {
const child = note.children[i];
if (child.tagName === "P" && child.innerText === "") {
continue;
} else {
container.appendChild(child.cloneNode(true));
break;
}
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(container);
}
return container.innerHTML
} else {
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
return note.innerHTML;
}
} else {
// Remove any anchor links if they are present
const anchorLink = note.querySelector('a.anchorjs-link');
if (anchorLink) {
anchorLink.remove();
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
// TODO in 1.5, we should make sure this works without a callout special case
if (note.classList.contains("callout")) {
return note.outerHTML;
} else {
return note.innerHTML;
}
}
}
for (var i=0; i<xrefs.length; i++) {
const xref = xrefs[i];
tippyHover(xref, undefined, function(instance) {
instance.disable();
let url = xref.getAttribute('href');
let hash = undefined;
if (url.startsWith('#')) {
hash = url;
} else {
try { hash = new URL(url).hash; } catch {}
}
if (hash) {
const id = hash.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note !== null) {
try {
const html = processXRef(id, note.cloneNode(true));
instance.setContent(html);
} finally {
instance.enable();
instance.show();
}
} else {
// See if we can fetch this
fetch(url.split('#')[0])
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.getElementById(id);
if (note !== null) {
const html = processXRef(id, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
} else {
// See if we can fetch a full url (with no hash to target)
// This is a special case and we should probably do some content thinning / targeting
fetch(url)
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.querySelector('main.content');
if (note !== null) {
// This should only happen for chapter cross references
// (since there is no id in the URL)
// remove the first header
if (note.children.length > 0 && note.children[0].tagName === "HEADER") {
note.children[0].remove();
}
const html = processXRef(null, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
}, function(instance) {
});
}
let selectedAnnoteEl;
const selectorForAnnotation = ( cell, annotation) => {
let cellAttr = 'data-code-cell="' + cell + '"';
let lineAttr = 'data-code-annotation="' + annotation + '"';
const selector = 'span[' + cellAttr + '][' + lineAttr + ']';
return selector;
}
const selectCodeLines = (annoteEl) => {
const doc = window.document;
const targetCell = annoteEl.getAttribute("data-target-cell");
const targetAnnotation = annoteEl.getAttribute("data-target-annotation");
const annoteSpan = window.document.querySelector(selectorForAnnotation(targetCell, targetAnnotation));
const lines = annoteSpan.getAttribute("data-code-lines").split(",");
const lineIds = lines.map((line) => {
return targetCell + "-" + line;
})
let top = null;
let height = null;
let parent = null;
if (lineIds.length > 0) {
//compute the position of the single el (top and bottom and make a div)
const el = window.document.getElementById(lineIds[0]);
top = el.offsetTop;
height = el.offsetHeight;
parent = el.parentElement.parentElement;
if (lineIds.length > 1) {
const lastEl = window.document.getElementById(lineIds[lineIds.length - 1]);
const bottom = lastEl.offsetTop + lastEl.offsetHeight;
height = bottom - top;
}
if (top !== null && height !== null && parent !== null) {
// cook up a div (if necessary) and position it
let div = window.document.getElementById("code-annotation-line-highlight");
if (div === null) {
div = window.document.createElement("div");
div.setAttribute("id", "code-annotation-line-highlight");
div.style.position = 'absolute';
parent.appendChild(div);
}
div.style.top = top - 2 + "px";
div.style.height = height + 4 + "px";
div.style.left = 0;
let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter");
if (gutterDiv === null) {
gutterDiv = window.document.createElement("div");
gutterDiv.setAttribute("id", "code-annotation-line-highlight-gutter");
gutterDiv.style.position = 'absolute';
const codeCell = window.document.getElementById(targetCell);
const gutter = codeCell.querySelector('.code-annotation-gutter');
gutter.appendChild(gutterDiv);
}
gutterDiv.style.top = top - 2 + "px";
gutterDiv.style.height = height + 4 + "px";
}
selectedAnnoteEl = annoteEl;
}
};
const unselectCodeLines = () => {
const elementsIds = ["code-annotation-line-highlight", "code-annotation-line-highlight-gutter"];
elementsIds.forEach((elId) => {
const div = window.document.getElementById(elId);
if (div) {
div.remove();
}
});
selectedAnnoteEl = undefined;
};
// Handle positioning of the toggle
window.addEventListener(
"resize",
throttle(() => {
elRect = undefined;
if (selectedAnnoteEl) {
selectCodeLines(selectedAnnoteEl);
}
}, 10)
);
function throttle(fn, ms) {
let throttle = false;
let timer;
return (...args) => {
if(!throttle) { // first call gets through
fn.apply(this, args);
throttle = true;
} else { // all the others get throttled
if(timer) clearTimeout(timer); // cancel #2
timer = setTimeout(() => {
fn.apply(this, args);
timer = throttle = false;
}, ms);
}
};
}
// Attach click handler to the DT
const annoteDls = window.document.querySelectorAll('dt[data-target-cell]');
for (const annoteDlNode of annoteDls) {
annoteDlNode.addEventListener('click', (event) => {
const clickedEl = event.target;
if (clickedEl !== selectedAnnoteEl) {
unselectCodeLines();
const activeEl = window.document.querySelector('dt[data-target-cell].code-annotation-active');
if (activeEl) {
activeEl.classList.remove('code-annotation-active');
}
selectCodeLines(clickedEl);
clickedEl.classList.add('code-annotation-active');
} else {
// Unselect the line
unselectCodeLines();
clickedEl.classList.remove('code-annotation-active');
}
});
}
const findCites = (el) => {
const parentEl = el.parentElement;
if (parentEl) {
const cites = parentEl.dataset.cites;
if (cites) {
return {
el,
cites: cites.split(' ')
};
} else {
return findCites(el.parentElement)
}
} else {
return undefined;
}
};
var bibliorefs = window.document.querySelectorAll('a[role="doc-biblioref"]');
for (var i=0; i<bibliorefs.length; i++) {
const ref = bibliorefs[i];
const citeInfo = findCites(ref);
if (citeInfo) {
tippyHover(citeInfo.el, function() {
var popup = window.document.createElement('div');
citeInfo.cites.forEach(function(cite) {
var citeDiv = window.document.createElement('div');
citeDiv.classList.add('hanging-indent');
citeDiv.classList.add('csl-entry');
var biblioDiv = window.document.getElementById('ref-' + cite);
if (biblioDiv) {
citeDiv.innerHTML = biblioDiv.innerHTML;
}
popup.appendChild(citeDiv);
});
return popup.innerHTML;
});
}
}
});
</script>
</div> <!-- /content -->
</body></html>