我想创建一个链接,允许用户下载显示的图表。我目前试图让它工作的方式是.toDataUrl
被认为是一种安全的方式,还是有另一种方法可以实现这一点。
HTML :
<canvas id="myChart" baseChart [colors]="colorsOverride" [datasets]="barChartData" [labels]="barChartLabels" [options]="barChartOptions" [legend]="barChartLegend"
[chartType]="barChartType" (chartHover)="chartHovered($event)" (chartClick)="chartClicked($event)">
</canvas>
<div class="footer">
<button (click)="exportGraph()">Export Graph</button>
</div>
零件:
export_graph = <HTMLCanvasElement>document.getElementById("myChart");
downloadLink: string;
exportGraph(){
this.downloadLink = this.export_graph.toDataURL("image/png");
}
当我尝试导出时,这是我在控制台中收到的错误消息:
Cannot read property 'toDataURL' of null
答案 0 :(得分:5)
您应该使用锚标记<a>
而不是<button>
,您可以将其设置为看起来像按钮。然后你可以附加一个click事件并以这种方式执行:
plunker:http://plnkr.co/edit/xyfWok58R3eQdYk7pAds?p=preview
首先,将下载链接添加到您的html
<a href="#" (click)="downloadCanvas($event)"> DOWNLOAD THIS</a>
然后创建downloadCanvas
函数
downloadCanvas(event) {
// get the `<a>` element from click event
var anchor = event.target;
// get the canvas, I'm getting it by tag name, you can do by id
// and set the href of the anchor to the canvas dataUrl
anchor.href = document.getElementsByTagName('canvas')[0].toDataURL();
// set the anchors 'download' attibute (name of the file to be downloaded)
anchor.download = "test.png";
}
在点击时执行document.getElement...
而不是事先进行操作非常重要。这样您就可以确定html视图和 <canvas>
已经渲染并完成绘图(您可以在页面上看到它)。
你在问题中这样做的方式,你在页面上呈现之前正在寻找<canvas>
元素,这就是它未定义的原因。