barChartDto Data Type

The Class BarChartDto.

Namespace
(Default)
Properties
name data type type namespace min/max occurs description
animate boolean element 1/1 Enables animation on plot rendering.
barMargin int element 1/1 The bar margin.
barPadding int element 1/1 The bar padding.
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.
legendCols int element 1/1 The legend cols.
legendPosition legendPositionEnum element 0/1 The legend position.
legendRows int element 1/1 The legend rows.
max double element 0/1 Minimum boundary value.
min double element 0/1 Minimum boundary value.
orientation orientationEnum element 0/1 The orientation.
showDataTip boolean element 1/1 Defines visibility of datatip.
stacked boolean element 1/1 Enables stacked display of bars.
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

<BarChart code="..." description="..." id="...">
  <legendPosition>...</legendPosition>
  <barPadding>...</barPadding>
  <barMargin>...</barMargin>
  <orientation>...</orientation>
  <stacked>...</stacked>
  <min>...</min>
  <max>...</max>
  <breakOnNull>...</breakOnNull>
  <xaxisLabel>...</xaxisLabel>
  <yaxisLabel>...</yaxisLabel>
  <xaxisAngle>...</xaxisAngle>
  <yaxisAngle>...</yaxisAngle>
  <legendCols>...</legendCols>
  <legendRows>...</legendRows>
  <zoom>...</zoom>
  <animate>...</animate>
  <showDataTip>...</showDataTip>
  <datatipFormat>...</datatipFormat>
  <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>
</BarChart>