-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from ba-st/move-plot-options-protocol
Moved plot options messages to their respective packages.
- Loading branch information
Showing
117 changed files
with
1,045 additions
and
914 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Area/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Area' } | ||
HighchartsPlotOptions >> area [ | ||
|
||
"The area series type. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all area series are defined in plotOptions.area. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, area: { // shared options for all area series } }, series: [{ // specific options for this series instance type: ´area´ }] }); | ||
" | ||
^ configurationOptions at: 'area' ifAbsentPut: [ HighchartsPlotOptionsArea new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Arearange/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Arearange' } | ||
HighchartsPlotOptions >> arearange [ | ||
|
||
"The area range series is a carteseian series with higher and lower values for each point along an X axis, where the area between the values is shaded. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all arearange series are defined in plotOptions.arearange. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, arearange: { // shared options for all arearange series } }, series: [{ // specific options for this series instance type: ´arearange´ }] }); | ||
" | ||
^ configurationOptions at: 'arearange' ifAbsentPut: [ HighchartsPlotOptionsArearange new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Areaspline/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Areaspline' } | ||
HighchartsPlotOptions >> areaspline [ | ||
|
||
"The area spline series is an area series where the graph between the points is smoothed into a spline. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all areaspline series are defined in plotOptions.areaspline. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, areaspline: { // shared options for all areaspline series } }, series: [{ // specific options for this series instance type: ´areaspline´ }] }); | ||
" | ||
^ configurationOptions at: 'areaspline' ifAbsentPut: [ HighchartsPlotOptionsAreaspline new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Areasplinerange/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Areasplinerange' } | ||
HighchartsPlotOptions >> areasplinerange [ | ||
|
||
"The area spline range is a cartesian series type with higher and lower Y values along an X axis. The area inside the range is colored, and the graph outlining the area is a smoothed spline. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all areasplinerange series are defined in plotOptions.areasplinerange. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, areasplinerange: { // shared options for all areasplinerange series } }, series: [{ // specific options for this series instance type: ´areasplinerange´ }] }); | ||
" | ||
^ configurationOptions at: 'areasplinerange' ifAbsentPut: [ HighchartsPlotOptionsAreasplinerange new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Bar/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Bar' } | ||
HighchartsPlotOptions >> bar [ | ||
|
||
"A bar series is a special type of column series where the columns are horizontal. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all bar series are defined in plotOptions.bar. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, bar: { // shared options for all bar series } }, series: [{ // specific options for this series instance type: ´bar´ }] }); | ||
" | ||
^ configurationOptions at: 'bar' ifAbsentPut: [ HighchartsPlotOptionsBar new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Bellcurve/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Bellcurve' } | ||
HighchartsPlotOptions >> bellcurve [ | ||
|
||
"A bell curve is an areaspline series which represents the probability density function of the normal distribution. It calculates mean and standard deviation of the base series data and plots the curve according to the calculated parameters. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all bellcurve series are defined in plotOptions.bellcurve. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, bellcurve: { // shared options for all bellcurve series } }, series: [{ // specific options for this series instance type: ´bellcurve´ }] }); | ||
" | ||
^ configurationOptions at: 'bellcurve' ifAbsentPut: [ HighchartsPlotOptionsBellcurve new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Boxplot/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Boxplot' } | ||
HighchartsPlotOptions >> boxplot [ | ||
|
||
"A box plot is a convenient way of depicting groups of data through their five-number summaries: the smallest observation (sample minimum), lower quartile (Q1), median (Q2), upper quartile (Q3), and largest observation (sample maximum). In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all boxplot series are defined in plotOptions.boxplot. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, boxplot: { // shared options for all boxplot series } }, series: [{ // specific options for this series instance type: ´boxplot´ }] }); | ||
" | ||
^ configurationOptions at: 'boxplot' ifAbsentPut: [ HighchartsPlotOptionsBoxplot new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Bubble/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Bubble' } | ||
HighchartsPlotOptions >> bubble [ | ||
|
||
"A bubble series is a three dimensional series type where each point renders an X, Y and Z value. Each points is drawn as a bubble where the position along the X and Y axes mark the X and Y values, and the size of the bubble relates to the Z value. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all bubble series are defined in plotOptions.bubble. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, bubble: { // shared options for all bubble series } }, series: [{ // specific options for this series instance type: ´bubble´ }] }); | ||
" | ||
^ configurationOptions at: 'bubble' ifAbsentPut: [ HighchartsPlotOptionsBubble new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Bullet/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Bullet' } | ||
HighchartsPlotOptions >> bullet [ | ||
|
||
"A bullet graph is a variation of a bar graph. The bullet graph features a single measure, compares it to a target, and displays it in the context of qualitative ranges of performance that could be set using plotBands on yAxis. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all bullet series are defined in plotOptions.bullet. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, bullet: { // shared options for all bullet series } }, series: [{ // specific options for this series instance type: ´bullet´ }] }); | ||
" | ||
^ configurationOptions at: 'bullet' ifAbsentPut: [ HighchartsPlotOptionsBullet new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Column/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Column' } | ||
HighchartsPlotOptions >> column [ | ||
|
||
"Column series display one column per value along an X axis. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all column series are defined in plotOptions.column. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, column: { // shared options for all column series } }, series: [{ // specific options for this series instance type: ´column´ }] }); | ||
" | ||
^ configurationOptions at: 'column' ifAbsentPut: [ HighchartsPlotOptionsColumn new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Columnpyramid/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Columnpyramid' } | ||
HighchartsPlotOptions >> columnpyramid [ | ||
|
||
"Column pyramid series display one pyramid per value along an X axis. To display horizontal pyramids, set chart.inverted to true. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all columnpyramid series are defined in plotOptions.columnpyramid. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, columnpyramid: { // shared options for all columnpyramid series } }, series: [{ // specific options for this series instance type: ´columnpyramid´ }] }); | ||
" | ||
^ configurationOptions at: 'columnpyramid' ifAbsentPut: [ HighchartsPlotOptionsColumnpyramid new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Columnrange/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Columnrange' } | ||
HighchartsPlotOptions >> columnrange [ | ||
|
||
"The column range is a cartesian series type with higher and lower Y values along an X axis. To display horizontal bars, set chart.inverted to true. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all columnrange series are defined in plotOptions.columnrange. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, columnrange: { // shared options for all columnrange series } }, series: [{ // specific options for this series instance type: ´columnrange´ }] }); | ||
" | ||
^ configurationOptions at: 'columnrange' ifAbsentPut: [ HighchartsPlotOptionsColumnrange new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Cylinder/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Cylinder' } | ||
HighchartsPlotOptions >> cylinder [ | ||
|
||
"A cylinder graph is a variation of a 3d column graph. The cylinder graph features cylindrical points. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all cylinder series are defined in plotOptions.cylinder. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, cylinder: { // shared options for all cylinder series } }, series: [{ // specific options for this series instance type: ´cylinder´ }] }); | ||
" | ||
^ configurationOptions at: 'cylinder' ifAbsentPut: [ HighchartsPlotOptionsCylinder new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Dependencywheel/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Dependencywheel' } | ||
HighchartsPlotOptions >> dependencywheel [ | ||
|
||
"A dependency wheel chart is a type of flow diagram, where all nodes are laid out in a circle, and the flow between the are drawn as link bands. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all dependencywheel series are defined in plotOptions.dependencywheel. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, dependencywheel: { // shared options for all dependencywheel series } }, series: [{ // specific options for this series instance type: ´dependencywheel´ }] }); | ||
" | ||
^ configurationOptions at: 'dependencywheel' ifAbsentPut: [ HighchartsPlotOptionsDependencywheel new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Dumbbell/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Dumbbell' } | ||
HighchartsPlotOptions >> dumbbell [ | ||
|
||
"The dumbbell series is a cartesian series with higher and lower values for each point along an X axis, connected with a line between the values. Requires highcharts-more.js and modules/dumbbell.js. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all dumbbell series are defined in plotOptions.dumbbell. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, dumbbell: { // shared options for all dumbbell series } }, series: [{ // specific options for this series instance type: ´dumbbell´ }] }); | ||
" | ||
^ configurationOptions at: 'dumbbell' ifAbsentPut: [ HighchartsPlotOptionsDumbbell new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Errorbar/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Errorbar' } | ||
HighchartsPlotOptions >> errorbar [ | ||
|
||
"Error bars are a graphical representation of the variability of data and are used on graphs to indicate the error, or uncertainty in a reported measurement. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all errorbar series are defined in plotOptions.errorbar. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, errorbar: { // shared options for all errorbar series } }, series: [{ // specific options for this series instance type: ´errorbar´ }] }); | ||
" | ||
^ configurationOptions at: 'errorbar' ifAbsentPut: [ HighchartsPlotOptionsErrorbar new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Funnel/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Funnel' } | ||
HighchartsPlotOptions >> funnel [ | ||
|
||
"Funnel charts are a type of chart often used to visualize stages in a sales project, where the top are the initial stages with the most clients. It requires that the modules/funnel.js file is loaded. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all funnel series are defined in plotOptions.funnel. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, funnel: { // shared options for all funnel series } }, series: [{ // specific options for this series instance type: ´funnel´ }] }); | ||
" | ||
^ configurationOptions at: 'funnel' ifAbsentPut: [ HighchartsPlotOptionsFunnel new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Funnel3d/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Funnel3d' } | ||
HighchartsPlotOptions >> funnel3d [ | ||
|
||
"A funnel3d is a 3d version of funnel series type. Funnel charts are a type of chart often used to visualize stages in a sales project, where the top are the initial stages with the most clients. It requires that the highcharts-3d.js, cylinder.js and funnel3d.js module are loaded. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all funnel3d series are defined in plotOptions.funnel3d. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, funnel3d: { // shared options for all funnel3d series } }, series: [{ // specific options for this series instance type: ´funnel3d´ }] }); | ||
" | ||
^ configurationOptions at: 'funnel3d' ifAbsentPut: [ HighchartsPlotOptionsFunnel3d new ] | ||
] |
9 changes: 9 additions & 0 deletions
9
source/HighchartsSt-V8-Series-Gauge/HighchartsPlotOptions.extension.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Extension { #name : #HighchartsPlotOptions } | ||
|
||
{ #category : #'*HighchartsSt-V8-Series-Gauge' } | ||
HighchartsPlotOptions >> gauge [ | ||
|
||
"Gauges are circular plots displaying one or more values with a dial pointing to values along the perimeter. In TypeScript the type option must always be set. Configuration options for the series are given in three levels: Options for all series in a chart are defined in the plotOptions.series object. Options for all gauge series are defined in plotOptions.gauge. Options for one single series are given in the series instance array. Highcharts.chart(´container´, { plotOptions: { series: { // general options for all series }, gauge: { // shared options for all gauge series } }, series: [{ // specific options for this series instance type: ´gauge´ }] }); | ||
" | ||
^ configurationOptions at: 'gauge' ifAbsentPut: [ HighchartsPlotOptionsGauge new ] | ||
] |
Oops, something went wrong.