当我尝试使用public FileResult Download()
{
string examplePathToFile = Server.MapPath("~/Downloads/Image.jpg");
string exampleMimeType = "image/jpeg";
return new FileStreamResult(new FileStream(examplePathToFile, FileMode.Open, FileAccess.Read), exampleMimeType);
}
时,我的图表中显示的路径不正确。当它更改为.interpolate('basis')
时,它会解决问题。即使我使用.interpolate('linear')
,如何解决此问题。以下是plunker .interpolate('basis')
请帮助我。