-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefault.aspx
95 lines (90 loc) · 4.03 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="DevExpress.XtraCharts.v15.1.Web, Version=15.1.15.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.XtraCharts.Web" TagPrefix="dxchartsui" %>
<%@ Register Assembly="DevExpress.XtraCharts.v15.1, Version=15.1.15.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.XtraCharts" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<dxchartsui:WebChartControl ID="WebChartControl1" runat="server" ClientInstanceName="chart"
Height="283px" Width="924px" OnCustomDrawSeriesPoint="WebChartControl1_CustomDrawSeriesPoint">
<SeriesSerializable>
<cc1:Series Name="Planned"
ValueScaleType="DateTime">
<ViewSerializable>
<cc1:OverlappedGanttSeriesView barwidth="0.8" hiddenserializablestring="to be serialized"></cc1:OverlappedGanttSeriesView>
</ViewSerializable>
<LabelSerializable>
<cc1:RangeBarSeriesLabel hiddenserializablestring="to be serialized">
</cc1:RangeBarSeriesLabel>
</LabelSerializable>
<PointOptionsSerializable>
<cc1:RangeBarPointOptions hiddenserializablestring="to be serialized"></cc1:RangeBarPointOptions>
</PointOptionsSerializable>
<LegendPointOptionsSerializable>
<cc1:RangeBarPointOptions hiddenserializablestring="to be serialized"></cc1:RangeBarPointOptions>
</LegendPointOptionsSerializable>
</cc1:Series>
<cc1:Series Name="Actual"
ValueScaleType="DateTime">
<ViewSerializable>
<cc1:OverlappedGanttSeriesView hiddenserializablestring="to be serialized"></cc1:OverlappedGanttSeriesView>
</ViewSerializable>
<LabelSerializable>
<cc1:RangeBarSeriesLabel hiddenserializablestring="to be serialized">
</cc1:RangeBarSeriesLabel>
</LabelSerializable>
<PointOptionsSerializable>
<cc1:RangeBarPointOptions hiddenserializablestring="to be serialized"></cc1:RangeBarPointOptions>
</PointOptionsSerializable>
<LegendPointOptionsSerializable>
<cc1:RangeBarPointOptions hiddenserializablestring="to be serialized"></cc1:RangeBarPointOptions>
</LegendPointOptionsSerializable>
</cc1:Series>
</SeriesSerializable>
<SeriesTemplate
>
<PointOptionsSerializable>
<cc1:PointOptions HiddenSerializableString="to be serialized">
</cc1:PointOptions>
</PointOptionsSerializable>
<LabelSerializable>
<cc1:SideBySideBarSeriesLabel HiddenSerializableString="to be serialized" LineVisible="True">
</cc1:SideBySideBarSeriesLabel>
</LabelSerializable>
<LegendPointOptionsSerializable>
<cc1:PointOptions HiddenSerializableString="to be serialized">
</cc1:PointOptions>
</LegendPointOptionsSerializable>
<ViewSerializable>
<cc1:SideBySideBarSeriesView HiddenSerializableString="to be serialized">
</cc1:SideBySideBarSeriesView>
</ViewSerializable>
</SeriesTemplate>
<DiagramSerializable>
<cc1:GanttDiagram>
<axisx visibleinpanesserializable="-1">
<Range SideMarginsEnabled="True"></Range>
</axisx>
<axisy visibleinpanesserializable="-1">
<Label Angle="90"></Label>
<Range SideMarginsEnabled="True"></Range>
</axisy>
</cc1:GanttDiagram>
</DiagramSerializable>
<FillStyle >
<OptionsSerializable>
<cc1:SolidFillOptions HiddenSerializableString="to be serialized" />
</OptionsSerializable>
</FillStyle>
</dxchartsui:WebChartControl>
</div>
</form>
</body>
</html>