You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
qsTr("Options for separate bins of the histogram")
533
-
+"<ul>"
534
-
+"<li>"+qsTr("Stack: Bars are stacked vertically, combining counts across categories within each bin.") +"</li>"
535
-
+"<li>"+qsTr("Identity: Bars are layered on top of each other, with transparency often used to distinguish overlapping data.") +"</li>"
536
-
+"<li>"+qsTr("Dodge: Bars are placed side-by-side, allowing for easy comparison of different categories within each bin.") +"</li>"
537
-
+"</ul>"
538
-
526
+
info:qsTr("Options for separate bins of the histogram")
527
+
RadioButton { value:"stack"; label:qsTr("Stack"); info:qsTr("Stack: Bars are stacked vertically, combining counts across categories within each bin."); checked:true }
528
+
RadioButton { value:"identity"; label:qsTr("Identity"); info:qsTr("Identity: Bars are layered on top of each other, with transparency often used to distinguish overlapping data.") }
529
+
RadioButton { value:"dodge"; label:qsTr("Dodge"); info:qsTr("Dodge: Bars are placed side-by-side, allowing for easy comparison of different categories within each bin.") }
0 commit comments