Skip to content

885456: Changes service link in ASP.NET Core and ASP.NET MVC documentation. #2972

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Column).
XName("Assignee").Marker(ViewBag.marker).
YName("Estimate").DataSource("dataManager").
XName("CustomerID").Marker(ViewBag.marker).
YName("Freight").DataSource("dataManager").
Query("query").
Name("Story Point").Add();

Expand All @@ -20,7 +20,7 @@
}
<script>
var dataManager = new ej.data.DataManager({
url: 'https://mvc.syncfusion.com/Services/Northwnd.svc/Tasks/'
url: 'https://services.syncfusion.com/aspnet/production/api/orders'
});
var query = new ej.data.Query().take(5).where('Estimate', 'lessThan', 3, false);
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<e-chart-primaryxaxis title="Assignee" rangePadding="Additional" valueType="Category"></e-chart-primaryxaxis>
<e-series-collection>
<e-series name="Story Point" xName="Assignee" width=2 yName="Estimate" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Column" query="new ej.data.Query().take(5).where('Estimate', 'lessThan', 3, false)">
<e-data-manager url='https://mvc.syncfusion.com/Services/Northwnd.svc/Tasks/' crossdomain="true"></e-data-manager>
<e-series name="Story Point" xName="CustomerID" width=2 yName="Freight" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Column" query="new ej.data.Query().take(5).where('Estimate', 'lessThan', 3, false)">
<e-data-manager url='https://services.syncfusion.com/aspnet/production/api/orders' crossdomain="true"></e-data-manager>
<e-series-marker>
<e-series-datalabel visible="true" position="Top"></e-series-datalabel>
</e-series-marker>
Expand Down