From d161560c7968f480288dfb244fcfe3c6a276d53a Mon Sep 17 00:00:00 2001 From: Roman Tsukanov Date: Mon, 2 Oct 2023 13:19:47 +0400 Subject: [PATCH] Use lowercase for types --- src/visualizerBase.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/visualizerBase.ts b/src/visualizerBase.ts index f9bf278b1..3983ba807 100644 --- a/src/visualizerBase.ts +++ b/src/visualizerBase.ts @@ -18,15 +18,15 @@ var styles = require("./visualizerBase.scss"); * Survey results. * - `options`\ * An object with the following properties: - * - `seriesValues`: `Array`\ + * - `seriesValues`: `Array`\ * Series values used to group data. - * - `seriesLabels`: `Array`\ + * - `seriesLabels`: `Array`\ * Series labels to display. If this property is not set, `seriesValues` are used as labels. * - `survey`: [`SurveyModel`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model)\ * Pass a `SurveyModel` instance if you want to use locales from the survey JSON schema. * - `dataProvider`: `DataProvider`\ * A data provider for this visualizer. - * - `type`: `String`\ + * - `type`: `string`\ * *(Optional)* The visualizer's type. * * [View Demo](https://surveyjs.io/dashboard/examples/how-to-plot-survey-data-in-custom-bar-chart/ (linkStyle)) @@ -76,7 +76,7 @@ export class VisualizerBase implements IDataInfo { * - `sender`: `VisualizerBase`\ * A `VisualizerBase` instance that raised the event. * - * - `options.locale`: `String`\ + * - `options.locale`: `string`\ * The indentifier of a new locale (for example, "en"). * @see locale */