The archive contains the following files:
barchart.chart.js
- the chart component you're integrating into your product(s)barchart.chart.d.ts
- TypeScript declaration file for the library; please note that this is useful for both TypeScript and JavaScript projectsindex.html
- a web page hosting a single chart; please note that you may host many charts inside a single page, we've tested dozens of charts shown simultaneouslyindex.js
- the script needed to add a chart to the page using a custom data feed (complete implementation is provided) for demonstration purposes; in practice, the feed is developed separately and using the chart requires only a few lines of codestyle.css
- a simple CSS for styling some elements of the UI using a dark themechart.def.json
- a default chart definition with one symbol plot and the volume study using a dark themeAMZN_Daily.json
- a snapshot of Amazon's daily data for demonstration purposesAMZN_Events.json
- a snapshot of Amazon's events data for demonstration purposespackage.json
- an npm package definition
Please note that because the timeseries data is loaded using JavaScript fetch
functionality, the web page must be served using a web server (in other words, you can't just open index.html
from the local filesystem). You could use a very mature and popular one that we like on NPM. Assuming you've decompressed the SDK into the chart-lib
folder, simply go into the chart-lib
folder and run serve .
. By default, the server will serve the index.html
on a port 5000.
In order to keep the chart component's size reasonably small, we have built the component for the following browsers/environments (minimal version listed, newer version will work too):
- Chrome 69
- Firefox 62
- Safari 12
- Edge 18
- Electron 4
Please note that the component can be made to support older browsers (for example IE 11, we have not tested older versions) at the expense of its size which typically grows significantly for very old browsers.
While the example code (index.html
and related files) is complete and works, it does not show a modern JavaScript development scenario - it's more akin to a traditional approach where you'd reference the library in your HTML, then use the resources from the Barchart "namespace" in your scripts.
However, this is just one and definitely not the only way of using the library. If you would like to reference and build the library with your code and you are using npm - which practically all modern approaches do - and any of the modern bundlers (Webpack, Rollup, Parcel) and transpilers like Babel, then please do one of the two:
- If you have network access, install our library from npm as usual, that is to say
npm i @barchart/chart-lib
oryarn add @barchart/chart-lib
- If you don't have network access, you may install the package directly from this very archive (no need to decompress) by running
npm i /path/to/chart-lib.tgz
oryarn add file:/path/to/chart-lib.tgz
You are now able to import
any of the functions/classes/constants the chart library exports; these are all documented in the above mentioned TypeScript declaration file. Our module name is @barchart/chart-lib
.
We've verified that the above works by using a tiny CRA app; the steps are identical regardless of your framework of choice.
The chart component/SDK does not ship with any form of UI. The API the chart responds to is documented here. We're busy at work making the docs clearer and easier to use, please check back often.
We do have a product which includes the UI called widget. A builder producing the small snippet of the HTML needed to get the widget on your page can be seen at the widget site. The very same widget powers our demo site. The widget is written in React with no additional libraries.
Please note that we're using the component as-is in many of Barchart's products. The component is in production since 2016 and is battle tested across several different scenarios. The component is framework-agnostic and works equally well in any modern JS framework as well as with no framework at all.