Skip to content

Commit 4023882

Browse files
committed
Update the questionTitleLocation description
1 parent 3dff9be commit 4023882

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/survey-core/src/panel.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,18 +1219,17 @@ export class PanelModelBase extends SurveyElement<Question>
12191219
/**
12201220
* Sets a title location relative to the input field for questions that belong to this panel/page.
12211221
*
1222-
* Use this property to override the `questionTitleLocation` property specified for the survey. You can also set the `titleLocation` property for individual questions.
1222+
* Use this property to override the [`questionTitleLocation`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#questionTitleLocation) property specified for the survey or parent page. You can also set the [`titleLocation`](https://surveyjs.io/form-library/documentation/api-reference/question#titleLocation) property for individual questions.
12231223
*
12241224
* Possible values:
12251225
*
1226-
* - `"default"` (default) - Inherits the setting from the `questionTitleLocation` property specified for the survey.
1226+
* - `"default"` (default) - Inherits the setting from the `questionTitleLocation` property specified for the survey or parent page.
12271227
* - `"top"` - Displays the title above the input field.
12281228
* - `"bottom"` - Displays the title below the input field.
12291229
* - `"left"` - Displays the title to the left of the input field.
12301230
* - `"hidden"` - Hides the question title.
12311231
*
12321232
* > Certain question types (Matrix, Multiple Text) do not support the `"left"` value. For them, the `"top"` value is used.
1233-
* @see SurveyModel.questionTitleLocation
12341233
*/
12351234
public get questionTitleLocation(): string {
12361235
return this.getPropertyValue("questionTitleLocation");

0 commit comments

Comments
 (0)