Skip to content

Commit

Permalink
917438: KB and samples review
Browse files Browse the repository at this point in the history
  • Loading branch information
BalaVigneshRaviChandran committed Nov 15, 2024
1 parent a77cdf2 commit ca86f7e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion KB-Samples/DiagramWithListBox/Pages/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@


<script src="_framework/blazor.server.js"></script>
<script src="~/javascript.js"></script>
<script src="~/JavaScript.js"></script>
</body>
</html>
6 changes: 3 additions & 3 deletions KB-Samples/HtmlTemplateSerialization/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
Type = NodeShapes.HTML,
},
AdditionalInfo = new Dictionary<string, object>()
{
{ "HtmlTemplate", "<div><h3 style=\"color:blue;\">Hello, Syncfusion!</h3><p>This is an HTML shape node</p></div>" }
}
{
{ "HtmlTemplate", "<div><h3 style=\"color:blue;\">Hello, Syncfusion!</h3><p>This is an HTML shape node</p></div>" }
}
};

nodes.Add(node);
Expand Down
7 changes: 2 additions & 5 deletions KB-Samples/TabWithDiagram/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,14 @@
<TabItem>
<HeaderTemplate>Diagram</HeaderTemplate>
<ContentTemplate>
<div class="col-lg-9 control-section sb-property-border">
<div class=" control-section sb-property-border" style="width:1900px">
<div id="diagram-space" class="content-wrapper">
<SfDiagramComponent DragDrop="@OnDrop" @ref="@Diagram" Height="690px" NodeCreating="@OnNodeCreating" ConnectorCreating="@OnConnectorCreating">
<SfDiagramComponent DragDrop="@OnDrop" @ref="@Diagram" Height="690px" Width="1900px" NodeCreating="@OnNodeCreating" ConnectorCreating="@OnConnectorCreating">

<ScrollSettings EnableAutoScroll=true>
</ScrollSettings>

<Layout @bind-Type="Type" @bind-HorizontalSpacing="@HorizontalSpacing" @bind-VerticalSpacing="@VerticalSpacing">

@* @bind-Orientation="@OrientationType" @bind-HorizontalAlignment="@HorizontalAlignment" @bind-VerticalAlignment="@VerticalAlignment" GetLayoutInfo="GetLayoutInfo" *@

<LayoutMargin @bind-Top="@Top" @bind-Bottom="@Bottom" @bind-Right="@Right" @bind-Left="@Left"></LayoutMargin>
</Layout>

Expand Down

0 comments on commit ca86f7e

Please sign in to comment.