Skip to content

Commit 560d2d1

Browse files
committed
Added Comments
1 parent 7a44944 commit 560d2d1

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html><head><meta charset="utf-8"><title>Angular FusionCharts</title><base href=""><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/x-icon" href="favicon.ico"><link href="styles.1f9a0e540f566da2a999.bundle.css" rel="stylesheet"/></head><body><app>Loading...</app><script type="text/javascript" src="inline.acd086f455812bceb18f.bundle.js"></script><script type="text/javascript" src="polyfills.adb2df9f86a0c3842e67.bundle.js"></script><script type="text/javascript" src="vendor.4026c91425e286cffeef.bundle.js"></script><script type="text/javascript" src="main.9710a6089f5c000d2c51.bundle.js"></script></body></html>
1+
<!doctype html><html><head><meta charset="utf-8"><title>Angular FusionCharts</title><base href=""><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/x-icon" href="favicon.ico"><link href="styles.1f9a0e540f566da2a999.bundle.css" rel="stylesheet"/></head><body><app>Loading...</app><script type="text/javascript" src="inline.9002df31084710b4a3d2.bundle.js"></script><script type="text/javascript" src="polyfills.adb2df9f86a0c3842e67.bundle.js"></script><script type="text/javascript" src="vendor.4026c91425e286cffeef.bundle.js"></script><script type="text/javascript" src="main.cc22b2b71301e1e88bae.bundle.js"></script></body></html>

docs/inline.acd086f455812bceb18f.bundle.js renamed to docs/inline.9002df31084710b4a3d2.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/main.9710a6089f5c000d2c51.bundle.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/main.cc22b2b71301e1e88bae.bundle.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/fusioncharts/ex11/ex11.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
height="400"
99
dataFormat="json"
1010
[dataSource]="dataSource"
11-
(initialized)="initialized($event)">
11+
(initialized)="initialized($event)"> <!-- Listen to initialized event to get the chart instance -->
1212
</fusioncharts>
1313
</div>
1414
</div>

src/app/fusioncharts/ex11/ex11.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class Ex11 {
2020

2121
initialized(e){
2222
this.chartInstance = e.chart;
23+
// Configure the drill down chart
2324
this.chartInstance.configureLink({
2425
type: "pie2d",
2526
width: "100%",
@@ -29,7 +30,7 @@ export class Ex11 {
2930
bgColor: 'FFEEEE',
3031
borderColor: '660000'
3132
}
32-
},0)
33+
});
3334
}
3435

3536
dataSource = {

src/app/fusioncharts/samplecode.ts

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)