Skip to content

Commit af4ceb7

Browse files
committed
Beter help
1 parent a1954c3 commit af4ceb7

File tree

1 file changed

+5
-14
lines changed

1 file changed

+5
-14
lines changed

inst/qml/Descriptives.qml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -512,30 +512,21 @@ Form
512512
name: "densityPlotType"
513513
id: densityPlotType
514514
title: qsTr("Type for scale variables:")
515-
info: qsTr("Whether to display a density plot or histogram.") + "</ul>"
515+
info: qsTr("Whether to display a density plot or histogram.")
516516
RadioButton { value: "density"; label: qsTr("Density"); checked: true }
517517
RadioButton
518518
{
519519
value: "histogram"
520520
label: qsTr("Histogram")
521-
info: "</ul>"
522521
RadioButtonGroup
523522
{
524523
name: "customHistogramPosition";
525524
id: customHistogramPosition
526525
title: qsTr("How to combine separate frequencies")
527-
RadioButton { value: "stack"; label: qsTr("Stack"); checked: true }
528-
RadioButton { value: "identity"; label: qsTr("Identity") }
529-
RadioButton { value: "dodge"; label: qsTr("Dodge") }
530-
info:
531-
"<ul>" +
532-
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.") }
539530
}
540531
}
541532
}

0 commit comments

Comments
 (0)