Skip to content

Commit

Permalink
Use lowercase for types
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Tsukanov committed Oct 2, 2023
1 parent 2012c0e commit d161560
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/visualizerBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ var styles = require("./visualizerBase.scss");
* Survey results.
* - `options`\
* An object with the following properties:
* - `seriesValues`: `Array<String>`\
* - `seriesValues`: `Array<string>`\
* Series values used to group data.
* - `seriesLabels`: `Array<String>`\
* - `seriesLabels`: `Array<string>`\
* 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))
Expand Down Expand Up @@ -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
*/
Expand Down

0 comments on commit d161560

Please sign in to comment.