You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can create mixed type chart using the `chart-dataset-override`, see [example](examples/dataset-override.html).
87
+
See also [stacked bar example](http://jtblin.github.io/angular-chart.js/examples/stacked-bars.html).
83
88
84
89
# Example
85
90
@@ -135,7 +140,7 @@ See [a simple AMD example](examples/amd.js)
135
140
## CommonJS e.g. webpack
136
141
137
142
Module should work with CommonJS out of the box e.g. [browserify](http://browserify.org/) or
138
-
[webpack](http://webpack.github.io/), see a [webpack example](examples/webpack.config.js).
143
+
[webpack](http://webpack.github.io/), see a [webpack example](examples/webpack.commonjs.js).
139
144
140
145
# Reactive
141
146
@@ -181,8 +186,10 @@ For IE8 and older browsers, you will need
181
186
to include [excanvas](https://code.google.com/p/explorercanvas/wiki/Instructions).
182
187
You will also need a [shim](https://github.com/es-shims/es5-shim) for ES5 functions.
183
188
184
-
You also need to have ```height``` and ```width``` attributes for the ```<canvas>``` tag of your chart if using IE8 and older browsers. If you *do not* have these attributes, you will need a
185
-
[getComputedStyle shim](https://github.com/Financial-Times/polyfill-service/blob/master/polyfills/getComputedStyle/polyfill.js) and the line ```document.defaultView = window;```, but there still may be errors (due to code in Chart.js).
189
+
You also need to have ```height``` and ```width``` attributes for the ```<canvas>``` tag of your chart
190
+
if using IE8 and older browsers. If you *do not* have these attributes, you will need a
0 commit comments