File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ const schemaFetch = fetch(
291291class 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
355359A custom component to easily add drill down to your react application.
You can’t perform that action at this time.
0 commit comments