Text in chart area object not reading in aspose doc

Hi,


In a doc file we have text written in an object inside chart area object.
When we read this file in aspose doc like
doc = new Aspose.Words.Document(filePath);

and then we convert this doc to html.

We do not have the object that contains the text in doc object.

Please refer attached document and screen shot.

Please do the needful ASAP.

Ghanshyam Tomar
(M) 9920673094

Hi Ghanshyam,


Thanks for your inquiry. Perhaps you’re using an older version of Aspose.Words; as with Aspose.Words 13.5.0, I was unable to reproduce this issue on my side. I would suggest you please upgrade to the latest version of Aspose.Words. You can download it from the following link:
http://www.aspose.com/community/files/51/.net-components/aspose.words-for-.net/default.aspx

I hope, this helps.

Best regards,

Hi,


I’ve tried with Aspose.Word.dll version 13.5.0.0 but, its not working.
Please do the needful.

Thanks & Regards,

Ghanshyam Tomar
tomargs1978@gmail.com
9920673094

Hi Ghanshyam,


Thanks for your inquiry. I am afraid, I could not see any issue with the output HTML document, could you please clarify where the issue is? I have attached output HTML document i.e. produced on my side here for your reference.

Moreover, could you please double check if you are using the latest version (13.5.0) on your side? You can dynamically check if you’re referencing the correct DLL by using the following code snippet:

System.Reflection.Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach (System.Reflection.Assembly assembly in assemblies)
{
System.Reflection.AssemblyName assemblyName = assembly.GetName();
if (assemblyName.Name.Contains(“Aspose.Words”))
Console.WriteLine("Aspose.Words Version Number: " + assemblyName.Version.ToString());
}

Also, you can download the latest version from the following link:

If we can help you with anything else, please feel free to ask.

Best regards,