Skip to content

Commit

Permalink
Merge branch 'cdcharlebois-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelte Lagendijk committed Dec 11, 2017
2 parents 021f06e + 778347b commit 5fac9d2
Show file tree
Hide file tree
Showing 17 changed files with 262 additions and 144 deletions.
8 changes: 8 additions & 0 deletions src/ChartJS/widgets/BarChart/BarChart.xml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,14 @@
Note: This is experimental. In case of non-persistent objects this should not be necessary, and in MX 7 this is useless. Only use this if you experience memory leaks in Mendix 5</description>
<returnType type="Void"></returnType>
</property>
<property key="base64Attr" type="attribute" required="false">
<caption>Base 64 Attribute</caption>
<category>Behavior</category>
<description>The attribute to store the base64 encoding of the chart when rendered.</description>
<attributeTypes>
<attributeType name="String"/>
</attributeTypes>
</property>
<!-- Settings -->
<property key="responsive" type="boolean" required="true" defaultValue="true">
<caption>Responsive</caption>
Expand Down
6 changes: 5 additions & 1 deletion src/ChartJS/widgets/BarChart/widget/BarChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ define([
scaleLineWidth : this.scaleLineWidth,

//The scale line color
scaleLineColor : this.scaleLineColor
scaleLineColor : this.scaleLineColor,

animation: {
onComplete: lang.hitch(this, this._animationComplete)
}
})
};

Expand Down
Loading

0 comments on commit 5fac9d2

Please sign in to comment.