Skip to content
Open
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
Binary file not shown.
Binary file modified packages/igniteui-mcp/igniteui-doc-mcp/db/igniteui-docs.db
Binary file not shown.
298 changes: 274 additions & 24 deletions packages/igniteui-mcp/igniteui-doc-mcp/docs_baseline/blazor/badge.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ The Infragistics Blazor Excel Engine's `WorksheetTable` functionality allows you

<!--## Blazor Using Tables Example


`sample="/excel/excel-library/working-with-tables", height="500", alt="Blazor Using Tables Example"`


-->

<div class="divider--half"></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ The following code shows how to bind the [`IgbGeographicSymbolSeries`](mcp:get_a
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
@for (int i = 0; i < this.DataSource.Count; i++)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ For your convenience, all above code snippets are combined into one code block b
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicShapeSeries ShapefileDataSource="AsiaShape" Outline="Black" Thickness="1" Brush="Red" />
<IgbGeographicShapeSeries ShapefileDataSource="EuropeShape" Outline="Black" Thickness="1" Brush="Purple" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ For your convenience, all above code snippets are combined into one code block b
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicPolylineSeries DataSource="Flights" ShapeMemberPath="Points"
ShapeStroke="rgba(196, 14, 14, 0.05)" ShapeStrokeThickness="4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ The following code binds [`IgbGeographicPolylineSeries`](mcp:get_api_reference?p
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicPolylineSeries ShapefileDataSource="@DataSource"
ShapeFilterResolution="0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ The following code snippet shows how to display Blazor geographic imagery tiles
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%"
Zoomable="true"
BackgroundContent="EsriImagery" />
Expand All @@ -89,7 +88,6 @@ Alternatively, you can use the [EsriUtility](geo-map-resources-esri.md) which de
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%"
Zoomable="true"
BackgroundContent="EsriImagery" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ The following code shows how to bind the [`IgbGeographicScatterAreaSeries`](mcp:
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicScatterAreaSeries LongitudeMemberPath="Lon"
LatitudeMemberPath="Lat"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ The following table summarizes the GeographicHighDensityScatterSeries series pro
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicProportionalSymbolSeries DataSource="WorldCities"
MarkerType="MarkerType.Circle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ The following code shows how to bind the [`IgbGeographicContourLineSeries`](mcp:
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicContourLineSeries LongitudeMemberPath="Lon"
LatitudeMemberPath="Lat"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ The following code shows how to bind the [`IgbGeographicSymbolSeries`](mcp:get_a
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicSymbolSeries DataSource="Cities"
MarkerType="MarkerType.Circle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ The following code demonstrates how to bind the [`IgbGeographicShapeSeries`](mcp
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<GeographicShapeSeries ShapefileDataSource="DataSource"/>
</IgbGeographicMap>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ The following code shows how to bind the [`IgbGeographicPolylineSeries`](mcp:get
```razor
@using IgniteUI.Blazor.Controls


<IgbGeographicMap Height="100%" Width="100%" Zoomable="true">
<IgbGeographicPolylineSeries Outline="Red" ShapefileDataSource="DataSource" />
</IgbGeographicMap>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ During runtime the expressions are gettable and settable from the `groupingExpre
new IgbGroupingExpression() { FieldName = "ShipCity", Dir= SortingDirection.Asc }
};


private void GroupGrid()
{
this.grid.GroupBy(GroupingExpression1);
Expand Down Expand Up @@ -323,7 +322,6 @@ As an example, the following template would make the group rows summary more ver
```razor
<IgbGrid AutoGenerate="true" Data="InvoicesData" @ref="grid" Id="grid" GroupRowTemplateScript="WebGridGroupByRowTemplate"></IgbGrid>


//In JavaScript:
igRegisterScript("WebGridGroupByRowTemplate", (ctx) => {
var html = window.igTemplating.html;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ await grid.Filter(new IgbGridLiteFilterExpression { Key = "FirstName", Condition
await grid.Filter(new IgbGridLiteFilterExpression[]
{
new IgbGridLiteFilterExpression { Key = "FirstName", Condition = "startsWith", SearchTerm = "a" },
new IgbGridLiteFilterExpression { Key = "FirstName", Condition = "startsWith", SearchTerm = "g", Criteria = "or" }```
new IgbGridLiteFilterExpression { Key = "FirstName", Condition = "startsWith", SearchTerm = "g", Criteria = "or" }```

The `ClearFilter()` method, as the name implies, clears the filter state of a single column or the whole grid component, depending on the passed arguments.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ await grid.Sort(new IgbGridLiteSortingExpression { Key = "Price", Direction = Gr
await grid.Sort(new IgbGridLiteSortingExpression[]
{
new IgbGridLiteSortingExpression { Key = "Price", Direction = GridLiteSortingDirection.Descending },
new IgbGridLiteSortingExpression { Key = "Name", Direction = GridLiteSortingDirection.Descending }```
new IgbGridLiteSortingExpression { Key = "Name", Direction = GridLiteSortingDirection.Descending }```

The `ClearSort()` method, as the name implies, clears the sort state of a single column or the whole grid component, depending
on the passed arguments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ Basically the main function will look like this:
this.MenuY = e.ClientY + "px";
}


public void onMenuShow(IgbGridCellEventArgs e)
{
IgbGridCellEventArgsDetail detail = e.Detail;
Expand All @@ -260,7 +259,6 @@ The context menu will have the following functions:
StateHasChanged();
}


public async void CopyRowData()
{
this.ShowMenu = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,6 @@ This can be done by creating a header template for the columns with a custom ico
HeaderTemplateScript="WebTreeGridPinHeaderTemplate" Name="column6" @ref="column6"></IgbColumn>
</IgbTreeGrid>


// In JavaScript

igRegisterScript("WebTreeGridPinHeaderTemplate", (ctx) => {
Expand Down
Loading