Pre loader

TypeScript definition for Blazor using CDN

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

I’m a C# developer looking to evaluate working with SciChartJS for a possible future project.

I’ve created a .NET Blazor Project working with JavaScript Interop and I would like to extend the CustomChartModifier2D in TypeScript.

I’ve not used npm to install SciChart into the project, rather I’m using the CDN approach in my _Host.cshtml file.

<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js" crossorigin="anonymous"></script>

I’ve been searching online for a SciChartJS TypeScript definition file so that I can leverage TS Strongly Typed system in my test project.

Is there one? Or do I need to build my own, or even is there an already made example of extending SciChart with TypeScript somewhere I’ve missed?

Thank you

Version
3.2.491
  • You must to post comments
1
1

Hi David,

We publish Typings with the npm package, and also they are distributed with the browser bundle script on JSDelivr. Here’s a direct link to the typings:

https://cdn.jsdelivr.net/npm/[email protected]/index.d.ts

However, I personally have no experience using TypeScript outside of an npm environment, I wasn’t aware you can even include it in pure JS applications.

Does that help? If you need something else let me know

Finally, if you’re not aware, there is an OSS Blazor implementation which uses our JSON/Builder API to create charts. Take a look here to see how they’ve done it. https://github.com/NRTDP/SciChartBlazor

Best regards
Andrew

  • You must to post comments
1
0

Hi Andrew,

Amazing. Thank you!

David

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.