Navigation :
Envision Language
Lokad Platform
Envision Gallery
Envision Reference
Envision Specifications
- StyleCode
- StyleCode - Layout Pipeline
- StyleCode - Number Pipeline
- StyleCode - Plot Color Pipeline
- StyleCode - Text Pipeline
- StyleCode - Types
-
StyleCode properties
-- StyleCode Property: alignWithLeft
-- StyleCode Property: areaPosition
-- StyleCode Property: areaTo
-- StyleCode Property: as
-- StyleCode Property: axisMax
-- StyleCode Property: axisMin
-- StyleCode Property: axisScale
-- StyleCode Property: backgroundColor
-- StyleCode Property: badgeColor
-- StyleCode Property: bannerButton
-- StyleCode Property: bannerMessage
-- StyleCode Property: barchartGroups
-- StyleCode Property: barPadding
-- StyleCode Property: barRatio
-- StyleCode Property: barTo
-- StyleCode Property: booleans
-- StyleCode Property: box0
-- StyleCode Property: box100
-- StyleCode Property: box25
-- StyleCode Property: box75
-- StyleCode Property: boxLowerColor
-- StyleCode Property: boxUpperColor
-- StyleCode Property: buttonAspect
-- StyleCode Property: buttonBackground
-- StyleCode Property: buttonBorder
-- StyleCode Property: buttonText
-- StyleCode Property: cellBackground
-- StyleCode Property: cellTooltip
-- StyleCode Property: chartBlockKind
-- StyleCode Property: color
-- StyleCode Property: columnAppend
-- StyleCode Property: columnDisplay
-- StyleCode Property: columnPrepend
-- StyleCode Property: columnReadOnly
-- StyleCode Property: columnTooltip
-- StyleCode Property: columnTooltipText
-- StyleCode Property: columnWidth
-- StyleCode Property: columnWidthEditable
-- StyleCode Property: dashButton
-- StyleCode Property: dashButtonKind
-- StyleCode Property: dateFormat
-- StyleCode Property: defaultTab
-- StyleCode Property: downloadColumn
-- StyleCode Property: downloadColumnName
-- StyleCode Property: downloadFileName
-- StyleCode Property: enableAllSelector
-- StyleCode Property: entryDisplay
-- StyleCode Property: entryTooltip
-- StyleCode Property: entryTooltipText
-- StyleCode Property: entryWidthFactor
-- StyleCode Property: fieldChoiceLabels
-- StyleCode Property: fieldChoices
-- StyleCode Property: fieldColor
-- StyleCode Property: fieldType
-- StyleCode Property: formAccess
-- StyleCode Property: formButton
-- StyleCode Property: formButtonAlign
-- StyleCode Property: formMessage
-- StyleCode Property: fractionSeparator
-- StyleCode Property: gaugeAngle
-- StyleCode Property: gaugeFillColor
-- StyleCode Property: gaugeMax
-- StyleCode Property: gaugeMin
-- StyleCode Property: gaugeStrokeColor
-- StyleCode Property: gridlineColor
-- StyleCode Property: gridlines
-- StyleCode Property: headerBackground
-- StyleCode Property: headerTextColor
-- StyleCode Property: href
-- StyleCode Property: hrefAspect
-- StyleCode Property: hrefBackground
-- StyleCode Property: hrefBorder
-- StyleCode Property: hrefTarget
-- StyleCode Property: hrefText
-- StyleCode Property: iconColor
-- StyleCode Property: iconPosition
-- StyleCode Property: labelBorder
-- StyleCode Property: labelBorderColor
-- StyleCode Property: labelIcon
-- StyleCode Property: legendPosition
-- StyleCode Property: menuDisplay
-- StyleCode Property: minPrecision
-- StyleCode Property: monthFormat
-- StyleCode Property: numbers
-- StyleCode Property: plusSign
-- StyleCode Property: precision
-- StyleCode Property: radius
-- StyleCode Property: selectAllLabel
-- StyleCode Property: seriesDisplay
-- StyleCode Property: seriesFan
-- StyleCode Property: seriesLegend
-- StyleCode Property: seriesLegendRank
-- StyleCode Property: seriesLegendTooltip
-- StyleCode Property: seriesMarker
-- StyleCode Property: seriesOpacity
-- StyleCode Property: seriesPattern
-- StyleCode Property: seriesSmooth
-- StyleCode Property: seriesStack
-- StyleCode Property: seriesType
-- StyleCode Property: sliceField
-- StyleCode Property: sliceHierarchy
-- StyleCode Property: sliceUnselected
-- StyleCode Property: summaryColumns
-- StyleCode Property: tabBadge
-- StyleCode Property: tabDisplay
-- StyleCode Property: textAlign
-- StyleCode Property: textBold
-- StyleCode Property: textColor
-- StyleCode Property: textItalic
-- StyleCode Property: textRotation
-- StyleCode Property: textVerticalAlign
-- StyleCode Property: thousandSeparator
-- StyleCode Property: tileColor
-- StyleCode Property: tileH
-- StyleCode Property: tilePlacement
-- StyleCode Property: tileTab
-- StyleCode Property: tileTitle
-- StyleCode Property: tileTooltip
-- StyleCode Property: tileTooltipText
-- StyleCode Property: tileW
-- StyleCode Property: tileX
-- StyleCode Property: tileY
-- StyleCode Property: tileZoom
-- StyleCode Property: tooltipColor
-- StyleCode Property: tooltipSecondaryColor
-- StyleCode Property: treemapCut
-- StyleCode Property: unit
-- StyleCode Property: unitPosition
-- StyleCode Property: vaxis
-- StyleCode Property: weekFormat
Library
Legacy
StyleCode Property: seriesType
seriesType
Specifies the display type of a series in a barchart
or linechart
.
Examples
// Example: barchart > series
table Items = with
[| as SKU, as Category, as Quantity |]
[| "AAA", "CAT_1", 10 |]
[| "BBB", "CAT_2", 20 |]
[| "CCC", "CAT_1", 30 |]
show barchart "My BarChart" a1b6 with
sum(Items.Quantity) { seriesType: bar }
group by Items.Category
// Example: linechart > series
table Day[Date] = with
[| as Date, as StockOnHand, as StockOnOrder |]
[| date(2023,01,15), 15,10 |]
[| date(2023,01,16), 5, 2 |]
[| date(2023,01,17), 12, 4 |]
[| date(2023,01,18), 13, 7 |]
show linechart "My Line Chart" a1b6 with
Day.StockOnHand { seriesType: bar }
Day.StockOnOrder
Details
The line
value specifies that the series should be displayed as a
line. Each value in the series is a vertex on the line, centered on
the horizontal range corresponding to the date (day, week or month)
for that value.
The stack
value specifies that the series should be displayed as a bar.
If multiple series are displayed with stack, their bars are stacked on
top of each other. The horizontal dimensions of the bar are the
horizontal range corresponding to the date for that value.
The legend
value specifies that the series should not be displayed
in the chart, only in the legend.
The area
value specifies that the series should be displayed as an
area between the series value and the areaTo value (default is 0).
The hidden
value specifies that the series should not be displayed
at all, exactly as if it did not exist.
In a barchart, seriesType
only applies if barchartGroups
is bottom
.