Hi Chris,
Thanks for using Syncfusion products.
We have analyzed your query and your requirement can be achieved by setting marker visibility as false in the series options to hide the outliers. Please find the below code snippet to achieve this requirement.
|
[ChartController.cs]
ViewBag.marker = new ChartMarkerSettings
{
Visible = false
};
[ChartFeatures.cshtml]
@(Html.EJS().Chart("container").Series(
series =>
{
series.Marker(ViewBag.marker).Add();
}).Render()
)
|
Screenshot:
Sample for your reference, can be find from below link,
Unfortunately, we are facing an issue while hovering over the points, the outlier is getting visible. So, we have logged a bug report, and the fix will be available in our next patch release on 7th August, 2018.
Thanks,
Dharani.