Pulizia image handler...

This commit is contained in:
Samuele E. Locatelli
2019-01-17 18:12:18 +01:00
parent 0f31401595
commit ed5be24ace
2 changed files with 18 additions and 21 deletions
@@ -1,7 +1,7 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="MP_SITE.WebUserControls.mod_sequencerStati"
CodeBehind="mod_sequencerStati.ascx.cs" %>
<%@ Register Assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI.DataVisualization.Charting" TagPrefix="asp" %>
<asp:Chart ID="Chart1" runat="server" ImageLocation="~/WebCharts/Seq_#SEQ(5000,10)" RenderType="ImageTag" SuppressExceptions="True" OnClick="Chart1_Click" Height="50">
<asp:Chart ID="Chart1" runat="server" RenderType="ImageTag" SuppressExceptions="True" OnClick="Chart1_Click" Height="50">
<Series>
<asp:Series Name="SeqS">
</asp:Series>
@@ -1,23 +1,20 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_sequencerTempiCiclo.ascx.cs"
Inherits="MP_SITE.WebUserControls.mod_sequencerTempiCiclo" %>
Inherits="MP_SITE.WebUserControls.mod_sequencerTempiCiclo" %>
<%@ Register Assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI.DataVisualization.Charting" TagPrefix="asp" %>
<asp:Chart ID="Chart1" runat="server"
ImageLocation="~/WebCharts/TC_#SEQ(300,3)"
ImageStorageMode="UseHttpHandler" SuppressExceptions="True"
onclick="Chart1_Click" Height="1px" Width="1px" >
<Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="TempiCiclo">
<AxisX LineWidth="0" IsMarginVisible="False">
</AxisX>
<Position Height="100" Width="100" X="0" Y="0" />
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend Name="Legenda" TitleAlignment="Far" Alignment="Center" Docking="Bottom"
LegendStyle="Row">
</asp:Legend>
</Legends>
Namespace="System.Web.UI.DataVisualization.Charting" TagPrefix="asp" %>
<asp:Chart ID="Chart1" runat="server" ImageStorageMode="UseHttpHandler" SuppressExceptions="True" OnClick="Chart1_Click" Height="1px" Width="1px">
<Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="TempiCiclo">
<AxisX LineWidth="0" IsMarginVisible="False">
</AxisX>
<Position Height="100" Width="100" X="0" Y="0" />
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend Name="Legenda" TitleAlignment="Far" Alignment="Center" Docking="Bottom"
LegendStyle="Row">
</asp:Legend>
</Legends>
</asp:Chart>