lineChartDto Data Type

The Class LineChartDto.

Namespace
(Default)
Properties
name data type type namespace min/max occurs description
animate boolean element 1/1 Enables animation on plot rendering.
breakOnNull boolean element 1/1 Whether line segments should be broken at null value, fall will join point on either side of line.
datatipFormat string element 0/1 Template string for datatips.
filled boolean element 1/1 The filled.
legendCols int element 1/1 The legend cols.
legendPosition legendPositionEnum element 0/1 The legend position.
legendRows int element 1/1 The legend rows.
maxX int element 1/1 The max X.
maxY int element 1/1 The max Y.
minX int element 1/1 The min X.
minY int element 1/1 The min Y.
seriesColors string element 0/1 The series colors.
shadow boolean element 1/1 The shadow.
showDataTip boolean element 1/1 Defines visibility of datatip.
stacked boolean element 1/1 Whether to stack series.
xaxisAngle int element 0/1 Angle of the x-axis ticks.
xaxisLabel string element 0/1 The xaxis label.
yaxisAngle int element 0/1 The yaxis angle.
yaxisLabel string element 0/1 The yaxis label.
zoom boolean element 1/1 Enables plot zooming.
Properties inherited from chartDto
extender string element 0/1 The extender.
height string element 0/1 The height.
measurableQuantity measurableQuantityDto element 0/1 The measurable quantity.
style string element 0/1 The style.
styleClass string element 0/1 The style class.
visible boolean element 0/1 The visible.
width string element 0/1 The width.
Properties inherited from enableBusinessDto
code string attribute 1/1 The code
description string attribute 0/1 The description
id long attribute 0/1 The id.
auditable auditableDto element 0/1  
auditableField auditableFieldDto element 0/unbounded  
disabled boolean element 0/1 Is entity disabled. Value is ignored in Update action - use enable/disable API instead.
updatedCode string element 0/1 The updated code.

Example

<LineChart code="..." description="..." id="...">
  <filled>...</filled>
  <legendPosition>...</legendPosition>
  <seriesColors>...</seriesColors>
  <shadow>...</shadow>
  <minX>...</minX>
  <maxX>...</maxX>
  <minY>...</minY>
  <maxY>...</maxY>
  <breakOnNull>...</breakOnNull>
  <xaxisLabel>...</xaxisLabel>
  <yaxisLabel>...</yaxisLabel>
  <xaxisAngle>...</xaxisAngle>
  <yaxisAngle>...</yaxisAngle>
  <stacked>...</stacked>
  <zoom>...</zoom>
  <animate>...</animate>
  <showDataTip>...</showDataTip>
  <datatipFormat>...</datatipFormat>
  <legendCols>...</legendCols>
  <legendRows>...</legendRows>
  <measurableQuantity>
    <theme>...</theme>
    <dimension1>...</dimension1>
    <dimension2>...</dimension2>
    <dimension3>...</dimension3>
    <dimension4>...</dimension4>
    <editable>...</editable>
    <additive>...</additive>
    <sqlQuery>...</sqlQuery>
    <measurementPeriod>...</measurementPeriod>
    <lastMeasureDate>...</lastMeasureDate>
  </measurableQuantity>
  <width>...</width>
  <height>...</height>
  <style>...</style>
  <styleClass>...</styleClass>
  <extender>...</extender>
  <visible>...</visible>
  <disabled>...</disabled>
  <auditable/>
  <auditableFields>
    <auditableField/>
  </auditableFields>
  <updatedCode>...</updatedCode>
</LineChart>