Does aspose cells editor support fill colour on graph and images?

@chetanepiq
So, this is not working as expected. it shall result zip file that contains image files. Please check this api in your controller

But same is happening with the lower version, I don’t think that is the issue.
Even with lower version manually downloading the same api brings the excel file as there are changes made in aspose-cell backend by us, so there are differences.
The blob api’s are getting called internally from client side I believe we haven’t written code for it. That comes fine with lower version but not with 25.x client side.

@chetanepiq
The image loading steps and behavior is changed from v24.x to v25.x, so please check this API and follow to the latest demos .
it shall be like:

 private string GetMimeType(string FileName)
 {
     string contentType;
     new FileExtensionContentTypeProvider().TryGetContentType(FileName, out contentType);
     return contentType ?? "application/octet-stream";
 }

 // GET: /GridJs2/GetFile?id
 //only in my side my enviroment ,I have removed filenme parameter to match exactally with action method,it is strange
 public FileResult GetFile(string id)
 {
     string filename = null;


     string fileid = id;
     string mimeType = filename != null ? GetMimeType(filename) :GetMimeType(fileid);
     string name = filename != null ? filename : fileid.Replace('/', '.');
 
     return File(GridJsWorkbook.CacheImp.LoadStream(fileid), mimeType, name);
 }

or if your controller extends GridJsControllerBase, you can check the above sample project I provided.

hi @peter.zhou can we connect on the call and get the issue sorted?
Along with @chetanepiq @purushothamj @sarathepiq

Looking forward for your support and response.

Thank you,
Ganesh Kumar.

We have been using something like this

    public InputStream getFile(String fileid) {
        return GridJsWorkbook.CacheImp != null ? GridJsWorkbook.CacheImp.loadStream(fileid) : null;
    }

Only difference I can see is mimetype.

@chetanepiq
please run my sample project, you can see the response for the file request for the zip shall result the zip file which contains the image files,this is root cause,so try to fix it in your controller api.
in your local cache implementation code which implement GridJs cache,you can debug more info for get file and write file .

@Ghani0303
my teams id is
difeijin@qq.com