Charting and data visualization #430
Replies: 3 comments 1 reply
-
Since I'm mostly developing Angular websites lately, I like Charts.js because it works natively in Javascript and does not require special wrappers. Our demo uses Chart.js. I also use the chartjs-chart-financial plugin to support candlestick line types. Since we're a .NET library, I've seen a lot of our users stick with Microsoft-compatible products too. ASP.NET Blazor is a good framework to consider since you can use our library directly in it. Here's a few to explore:
What are some other ideas from the community? |
Beta Was this translation helpful? Give feedback.
-
I tried a few charting libraries for .Net. So far, Plotly.NET seems to be the best. It can even draws complex indicators like Ichimoku Cloud. It can output charts to a single HTML file, if you need something quick without starting a web server. The downside is the document for .Net is quite a poor. Another option I use is to output data to spreadsheets such as csv files or Google Sheets (via Google Sheet API), then draw charts using Excel or Google Sheets. Google Sheets can be connected to Looker Studio (aka Google Data Studio) and csv files can be used with PowerBi, if one needs a fancy dashboard. |
Beta Was this translation helpful? Give feedback.
-
I'm actually creating a stock library using ScottPlot, you can find it here. I'm gona implement your indicators library on it, wonderfull job done here |
Beta Was this translation helpful? Give feedback.
-
What are some good charting and data visualization products that you recommend?
Beta Was this translation helpful? Give feedback.
All reactions