Syncfusion Feedback

Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

The ASP.NET Core Smith Chart is a control for showing the parameters of transmission lines in high-frequency circuit applications. Its rich feature set includes features like legends, markers, tooltips, and data labels.


ASP.NET Core Smith Chart Code Example

Easily get started with the ASP.NET Core Smith Chart using a few simple lines of C# code example as demonstrated below. Also explore our ASP.NET Core Smith Chart Example that shows you how to render and configure the Smith Chart in ASP.NET Core.

  1. @using Syncfusion.EJ2;
  2. @using Syncfusion.EJ2.Charts;
  3. <div id="control-section">
  4. <ejs-smithchart id="smithchart" loaded="loaded">
  5. <e-smithchart-smithchartseriescollection>
  6. <e-smithchart-smithchartseries name="Transmission1"></e-smithchart-smithchartseries>
  7. <e-smithchart-smithchartseries name="Transmission2"></e-smithchart-smithchartseries>
  8. </e-smithchart-smithchartseriescollection>
  9. </ejs-smithchart>
  10. </div>
  11. <script>
  12. function loaded(args) {
  13. window.smithchart = args.smithchart;
  14. args.smithchart.series[0].points = [
  15. { resistance: 0, reactance: 0.05 }, { resistance: 0, reactance: 0.05 },
  16. { resistance: 0, reactance: 0.05 }, { resistance: 0, reactance: 0.05 },
  17. { resistance: 0, reactance: 0.05 }, { resistance: 0, reactance: 0.05 },
  18. { resistance: 0, reactance: 0.05 }, { resistance: 0, reactance: 0.05 },
  19. { resistance: 0, reactance: 0.05 }, { resistance: 0, reactance: 0.05 },
  20. { resistance: 0.3, reactance: 0.1 }, { resistance: 0.5, reactance: 0.2 },
  21. { resistance: 1.5, reactance: 0.5 }, { resistance: 2.0, reactance: 0.5 },
  22. { resistance: 2.5, reactance: 0.4 }, { resistance: 3.5, reactance: 0.0 },
  23. { resistance: 2.5, reactance: 0.4 }, { resistance: 3.5, reactance: 0.0 },
  24. { resistance: 2.5, reactance: 0.4 }, { resistance: 3.5, reactance: 0.0 },
  25. { resistance: 4.5, reactance: -0.5 }, { resistance: 5.0, reactance: -1.0 }
  26. ];
  27. args.smithchart.series[1].points = [{ resistance: 0, reactance: 0.15 }, { resistance: 0, reactance: 0.15 },
  28. { resistance: 0, reactance: 0.15 }, { resistance: 0.3, reactance: 0.2 },
  29. { resistance: 0.3, reactance: 0.2 }, { resistance: 0.3, reactance: 0.2 },
  30. { resistance: 0.3, reactance: 0.2 }, { resistance: 0.3, reactance: 0.2 },
  31. { resistance: 0.5, reactance: 0.4 }, { resistance: 1.0, reactance: 0.8 },
  32. { resistance: 2.5, reactance: 1.3 }, { resistance: 3.5, reactance: 1.6 },
  33. { resistance: 3.5, reactance: 1.6 }, { resistance: 3.5, reactance: 1.6 },
  34. { resistance: 4.5, reactance: 2.0 }, { resistance: 6.0, reactance: 4.5 },
  35. { resistance: 8, reactance: 6 }, { resistance: 10, reactance: 25 }];
  36. args.smithchart.loaded = null;
  37. args.smithchart.refresh();
  38. }
  39. </script>

Rendering type

Visualize both the impedance and admittance of transmission lines with Smith chart.


ASP.NET Core Smith Chart with title and subtitle.

Title and subtitle

Add a title and subtitle to the ASP.NET Core Smith chart control to visualize additional information about the data represented. You can customize the font and alignment of the title and subtitle.


Multiple series

Plot any number of line series for representing data.

ASP.NET Core Smith Chart with multiple series.


ASP.NET Core Smith Chart with customized axis.

Axis customization

The ASP.NET Core Smith chart control supports a horizontal axis and radial axis. The horizontal axis is used for plotting resistance values of transmission lines and the radial axis is used for plotting nonresistance values of transmission lines.


Marker

Markers highlight data points to improve readability.

ASP.NET Core Smith Chart with markers.


ASP.NET Core Smith Chart with data labels.

Data labels

Easily annotate the data points with labels to help improve the readability of data. The data labels in the ASP.NET Core Smith chart control are smartly arranged to avoid intersection when there are large amounts of data.


Legend

A legend provides additional information that is helpful in identifying individual series in a Smith chart. It can be docked at the left, right, top, or bottom positions around the plot area. By clicking a legend item, we can toggle series visibility.

ASP.NET Core Smith Chart rendered with legend.


ASP.NET Core Smith Chart with animation.

Animation

Animate the series in the ASP.NET Core Smith chart while rendering.


Tooltip

The interactive ASP.NET Core Smith chart displays a pop-up with additional information when the mouse is hovered over a data point.

Displays a tooltip on moving mouse over the ASP.NET Core Smith Chart.


Exporting

Print or export the rendered ASP.NET Core Smith chart to save a local copy for further use.

Export ASP.NET Core Smith Chart illustration.

Export

You can export the Smith chart to a PDF document or in image formats such as SVG, PNG, and JPEG in client-side.

Print ASP.NET Core Smith Chart illustration.

Print

Print the rendered Smith chart directly from the browser.


Touch and browser support

The interactive Smith chart control also support touch interactions.

Touch illustration in ASP.NET Core Smith Chart.

Touch support

All the Smith chart features will work on touch devices with zero configuration. Use the touch features, such as tooltips and toggling series visibility using the legend, without any customization.

Responsive illustration in ASP.NET Core Smith Chart.

Responsive

You can view the Smith chart control on various devices. Also hide specific elements in the Smith chart for particular screen sizes by making a very minimal change in the events.

Cross-browser illustration in ASP.NET Core Smith Chart.

Cross-browser support

You can render the Smith chart component in all the modern browsers.

Other supported frameworks

The Smith Chart is available for the Blazor, Angular, JavaScript, Vue, and ASP.NET MVC frameworks. Explore its platform-specific options through the following links:

Supported browsers

The ASP.NET Core Smith Chart works well with all modern web browsers, including Chrome, Firefox, Edge, Safari, and Opera.

Supported browsers in ASP.NET Core Smith Chart.

90+ ASP.NET CORE UI CONTROLS

Frequently Asked Questions

The Syncfusion ASP.NET Core Smith Chart component includes the following features:

  • Impedance and admittance rendering types.
  • Legends, markers, tooltips, and data labels.
  • Printing and exporting in PDF, SVG, PNG, and JPEG formats.
  • Simple configuration and API.
  • Support for all modern browsers.
  • Extensive demos and documentation, to learn quickly and get started with the ASP.NET Core Smith Chart component.

We do not sell the ASP.NET Core Smith Chart separately. It is only available for purchase as part of the Syncfusion team license. This contains over 1,900 components and frameworks, including the ASP.NET Core Smith Chart. The price of the team license starts at $395 per month for 5 developers, and includes support and updates until the subscription expires. In addition, we might offer discounts based on currently active promotions. Please contact our product specialists today to see if you qualify for any additional discounts.

You can find our ASP.NET Core Smith Chart demo, which demonstrates how to render and configure the Smith Chart.

No, our 1,900+ components and frameworks for web, mobile, and desktop, including our ASP.NET Core Smith Chart, are not sold individually. They are only available as part of a team license. However, we have competitively priced the product, so it only costs a little bit more than what some other vendors charge for their Smith Chart component alone. We have also found that, in our experience, our customers usually start off using one of our products and then expand to several products quickly, so we felt it was best to offer all 1,900+ components and frameworks for a subscription fee that starts at $395 per month for a team of 5 developers. Additionally, we might be able to offer discounts based on currently active promotions. Please contact our product specialists today to see if you qualify for any additional discounts.

No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.

A good place to start would be our comprehensive getting started documentation.

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion® reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Transform your applications today by downloading our free evaluation version
Download Free Trial No credit card required.

Syncfusion ASP.NET Core Smith Chart Resources

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion® is proud to hold the following industry awards.

Up arrow icon
Chat with us