wanpeng2008

Results 4 issues of wanpeng2008

i use following codes to display a map: `export function highChartsMapFactory() { const hc = require('highcharts/highmaps'); const dd = require('highcharts/modules/exporting'); dd(hc); return hc; } @NgModule({ ... providers:[ { provide: HighchartsStatic,...

Great plugin! Does it support, or is there any way to support vertical scrolling?

I implement an auto running slider using setInterval() ```` ngAfterViewInit(): void { this.interval = setInterval(()=>{ this.topSliderComponent.nextSlide().then(); }, 5000); } ngOnDestroy(): void { clearInterval(this.interval); } ```` When i route to other...

todo