We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Nuget update does not add correct XML includes for assemblies in .config

The nuget update for Syncfusion ASP MVC libs, does a few things wrong.

  1. Its adding new libs but not removing the old versions of the lib, so there are many duplicate entries, the syntax and format is wrong
  2. Its adds WPF controls as dependencies for MVC libs.

1 Reply

KP Kanimozhi Pandian Syncfusion Team January 21, 2016 12:51 PM UTC

Hi Andrea,
Thanks for contacting syncfusion support.
We have analyzed your query. This can be achieved by following the below steps.

·       We have specified four series in chart.
·       And on first series, we are setting the series type as scatter and marker shape as “Horizontal Line” as well as in second series.
·       On third series, we are setting the series type as scatter and marker shape as “Diamond”.
·       On fourth series, we are setting the series type as “hilo”.

Thus the required output can be attained. We have also made a sample for your reference and attached in the below location.

Sample Link : https://www.syncfusion.com/downloads/support/forum/123273/ze/sample1661787800
The below shows the output of the attached sample.

  

And in addition if you wish to remove the legend item with the text “hilo”, it can be done by using the below code snippet.

[CSHTML]

@(Html.EJ().Chart("container")
   .Loaded("legend")
)

[JS]

function legend(sender) //Loaded event triggered

    {

        $("#" + this._id + "_svg_Legend3").remove(); //To remove the legend item from the DOM
    }


In the above code we have triggered loaded event in chart and removed the legend item by using its id. And also find the output after that legend item removed from DOM



Please let us know if you have any concern.

Regards,
Saravana Kumar K

Loader.
Live Chat Icon For mobile
Up arrow icon