Skip to content

Commit 5d4c30c

Browse files
committed
Updated README
1 parent 7be7b22 commit 5d4c30c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ const schemaFetch = fetch(
291291
class ChartViewer extends React.Component {
292292
constructor(props) {
293293
super(props);
294-
294+
this.onFetchData = this.onFetchData.bind(this);
295295
this.state = {
296296
timeseriesDs: {
297297
type: 'timeseries',
@@ -313,7 +313,6 @@ class ChartViewer extends React.Component {
313313
}
314314
}
315315
};
316-
this.onFetchData = this.onFetchData.bind(this);
317316
}
318317

319318
componentDidMount() {
@@ -350,6 +349,11 @@ class ChartViewer extends React.Component {
350349
}
351350
```
352351

352+
Useful links for FusionTime
353+
354+
- [How FusionTime works](https://www.fusioncharts.com/dev/fusiontime/getting-started/how-fusion-time-works)
355+
- [Create your first chart](https://www.fusioncharts.com/dev/fusiontime/getting-started/create-your-first-chart-in-fusiontime)
356+
353357
## Drill Down Component
354358

355359
A custom component to easily add drill down to your react application.

0 commit comments

Comments
 (0)