Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
nodejs-60-2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
winai buttasart
nodejs-60-2
Commits
576bd481
Commit
576bd481
authored
Feb 27, 2018
by
winai buttasart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ส่งงาน desktop application
parent
0ceeaec2
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
328 additions
and
38 deletions
+328
-38
01.html
week05/windowapp/chartMenu/customChart/01/01.html
+146
-35
tmp.html
week05/windowapp/chartMenu/customChart/01/tmp.html
+56
-0
graph.html
week05/windowapp/chartMenu/graph.html
+18
-1
graph01.html
week05/windowapp/chartMenu/graph01.html
+18
-1
graph02.html
week05/windowapp/chartMenu/graph02.html
+8
-0
graph03.html
week05/windowapp/chartMenu/graph03.html
+8
-0
graph04.html
week05/windowapp/chartMenu/graph04.html
+8
-0
graph05.html
week05/windowapp/chartMenu/graph05.html
+8
-0
graph06.html
week05/windowapp/chartMenu/graph06.html
+8
-0
graph07.html
week05/windowapp/chartMenu/graph07.html
+8
-0
graph08.html
week05/windowapp/chartMenu/graph08.html
+8
-0
graph09.html
week05/windowapp/chartMenu/graph09.html
+8
-0
graph10.html
week05/windowapp/chartMenu/graph10.html
+8
-0
.DS_Store
week05/windowapp/css/.DS_Store
+0
-0
graph.html
week05/windowapp/graph.html
+18
-1
Easy.exe
week05/windowapp/release-builds/Easy-win32-ia32/Easy.exe
+0
-0
No files found.
week05/windowapp/chartMenu/customChart/01/01.html
View file @
576bd481
...
@@ -3,64 +3,176 @@
...
@@ -3,64 +3,176 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<script>
<title>
แก้ไข Animated chart
</title>
window
.
onload
=
function
()
{
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
var
chart
=
new
CanvasJS
.
Chart
(
"chartContainer"
,
{
<!-- Favicons
theme
:
"light2"
,
// "light1", "light2", "dark1", "dark2"
================================================== -->
exportEnabled
:
true
,
<link
rel=
"icon"
href=
"../../../img/icon/icon.png"
>
animationEnabled
:
true
,
title
:
{
<style>
text
:
"Desktop Browser Market Share in 2016"
table
{
},
width
:
100%
;
data
:
[{
height
:
100%
;
type
:
"pie"
,
padding-top
:
20px
;
startAngle
:
25
,
/* margin-left: 20px; */
toolTipContent
:
"<b>{label}</b>: {y}%"
,
}
showInLegend
:
"true"
,
legendText
:
"{label}"
,
#editTD
{
indexLabelFontSize
:
16
,
width
:
30%
;
indexLabel
:
"{label} - {y}%"
,
height
:
100%
;
dataPoints
:
[{
}
#showTD
{
width
:
60%
;
height
:
100%
;
}
#paddingLTD
{
width
:
5%
;
height
:
100%
;
}
#paddingRTD
{
width
:
5%
;
height
:
100%
;
}
showDiv
{
width
:
100%
;
height
:
100%
;
margin-right
:
20px
;
}
td
{
border
:
1px
;
border-style
:
hidden
;
border-spacing
:
0px
;
padding
:
0px
;
}
</style>
</head>
<body>
<table>
<tr>
<td
id=
"paddingLTD"
></td>
<td
id=
"editTD"
>
<div
id=
"divTD"
>
<h3>
ชื่อกราฟ :
<textarea
form=
"tArea"
id=
"graphName"
></textarea>
</h3>
</div>
<button
id=
"bt1"
>
บันทึก
</button>
</td>
<td
id=
"showTD"
>
<div
id=
"showDiv"
></div>
</td>
<td
id=
"paddingRTD"
></td>
</tr>
</table>
<script
src=
"../../../asset/js/canvasjs/canvasjs.min.js"
></script>
<script
src=
"../../../asset/js/jquery/jquery.min.js"
></script>
<script>
var
data
=
[{
y
:
51.08
,
y
:
51.08
,
label
:
"Chrome"
label
:
"Chrome"
},
},
{
{
y
:
27.34
,
y
:
27.34
,
label
:
"Internet Explorer"
label
:
"Internet Explorer"
},
},
{
{
y
:
10.62
,
y
:
10.62
,
label
:
"Firefox"
label
:
"Firefox"
},
},
{
{
y
:
5.02
,
y
:
5.02
,
label
:
"Microsoft Edge"
label
:
"Microsoft Edge"
},
},
{
{
y
:
4.07
,
y
:
4.07
,
label
:
"Safari"
label
:
"Safari"
},
},
{
{
y
:
1.22
,
y
:
1.22
,
label
:
"Opera"
label
:
"Opera"
},
},
{
{
y
:
0.44
,
y
:
0.44
,
label
:
"Others"
label
:
"Others"
}
}
]
];
var
nameG
=
"Desktop Browser Market Share in 2016"
;
$
(
'#graphName'
).
val
(
nameG
);
for
(
var
i
in
data
)
{
$
(
'#divTD'
).
append
(
"<div><h3>"
+
"<input type='text' class='te' value='"
+
data
[
i
].
label
+
"' size='10'>"
+
" : <input type='text' value='"
+
data
[
i
].
y
+
"' size='2'> %</h3></div>"
);
//
<
button
>
ลบ
<
/button
>
}
window
.
onload
=
function
()
{
Render
();
}
$
(
document
).
ready
(
function
()
{
$
(
'#graphName'
).
mouseout
(
function
()
{
nameG
=
$
(
'#graphName'
).
val
();
Render
();
});
$
(
'#bt1'
).
click
(
function
()
{
Redata
();
});
// $('button').click(function () {
// $(this).parent().remove();
// Redata();
// });
function
Redata
()
{
var
a
=
$
(
'input'
);
for
(
var
i
=
0
;
i
<
a
.
length
;
i
+=
2
)
{
data
[
i
/
2
].
label
=
a
[
i
].
value
;
i
++
;
data
[(
i
-
1
)
/
2
].
y
=
a
[
i
].
value
;
i
--
;
Render
();
}
}
});
function
Render
()
{
var
chart
=
new
CanvasJS
.
Chart
(
"showDiv"
,
{
theme
:
"light2"
,
// "light1", "light2", "dark1", "dark2"
exportEnabled
:
true
,
animationEnabled
:
true
,
title
:
{
text
:
nameG
},
data
:
[{
type
:
"pie"
,
startAngle
:
25
,
toolTipContent
:
"<b>{label}</b>: {y}%"
,
showInLegend
:
"true"
,
legendText
:
"{label}"
,
indexLabelFontSize
:
16
,
indexLabel
:
"{label} - {y}%"
,
dataPoints
:
data
}]
}]
});
});
chart
.
render
();
chart
.
render
();
}
}
</script>
</script>
</head>
<body>
<div
id=
"chartContainer"
style=
"height: 370px; max-width: 920px; margin: 0px auto;"
></div>
<script
src=
"../../asset/js/canvasjs/canvasjs.min.js"
></script>
</body>
</body>
</html>
</html>
\ No newline at end of file
week05/windowapp/chartMenu/customChart/01/tmp.html
0 → 100644
View file @
576bd481
<body>
<script>
window
.
onload
=
function
()
{
var
chart
=
new
CanvasJS
.
Chart
(
"show"
,
{
theme
:
"light2"
,
// "light1", "light2", "dark1", "dark2"
exportEnabled
:
true
,
animationEnabled
:
true
,
title
:
{
text
:
"Desktop Browser Market Share in 2016"
},
data
:
[{
type
:
"pie"
,
startAngle
:
25
,
toolTipContent
:
"<b>{label}</b>: {y}%"
,
showInLegend
:
"true"
,
legendText
:
"{label}"
,
indexLabelFontSize
:
16
,
indexLabel
:
"{label} - {y}%"
,
dataPoints
:
[{
y
:
51.08
,
label
:
"Chrome"
},
{
y
:
27.34
,
label
:
"Internet Explorer"
},
{
y
:
10.62
,
label
:
"Firefox"
},
{
y
:
5.02
,
label
:
"Microsoft Edge"
},
{
y
:
4.07
,
label
:
"Safari"
},
{
y
:
1.22
,
label
:
"Opera"
},
{
y
:
0.44
,
label
:
"Others"
}
]
}]
});
chart
.
render
();
}
</script>
</body>
\ No newline at end of file
week05/windowapp/chartMenu/graph.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
@@ -146,7 +154,7 @@
...
@@ -146,7 +154,7 @@
<img
src=
"../asset/image/icon/files.png"
alt=
"..."
class=
"preview"
>
<img
src=
"../asset/image/icon/files.png"
alt=
"..."
class=
"preview"
>
</button>
</button>
<button
type=
"button"
class=
"btn btn-success btnCreate"
data-toggle=
"tooltip"
title=
"สร้างกราฟ"
style=
"margin-left:10px;"
<button
type=
"button"
class=
"btn btn-success btnCreate"
data-toggle=
"tooltip"
title=
"สร้างกราฟ"
style=
"margin-left:10px;"
onclick=
"editChart('./customChart/mainCustom.html','./customeChart/editChart.html','./customeChart/showChart
.html')"
>
onclick=
"ChartEdit('./customChart/01/01
.html')"
>
<img
src=
"../asset/image/icon/create.png"
alt=
"..."
class=
"preview"
>
<img
src=
"../asset/image/icon/create.png"
alt=
"..."
class=
"preview"
>
</button>
</button>
<br>
<br>
...
@@ -461,6 +469,15 @@
...
@@ -461,6 +469,15 @@
<script
src=
"../asset/bootstrap/js/bootstrap.bundle.min.js"
></script>
<script
src=
"../asset/bootstrap/js/bootstrap.bundle.min.js"
></script>
<script>
<script>
function
ChartEdit
(
path
)
{
var
win
=
window
.
open
(
path
,
'_blank'
);
if
(
win
)
{
win
.
focus
();
}
else
{
alert
(
'อนุญาติให้เปิดเว็บไซต์'
);
}
}
function
previewShow
(
path
)
{
function
previewShow
(
path
)
{
var
win
=
window
.
open
(
path
,
'_blank'
);
var
win
=
window
.
open
(
path
,
'_blank'
);
if
(
win
)
{
if
(
win
)
{
...
...
week05/windowapp/chartMenu/graph01.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
@@ -146,7 +154,7 @@
...
@@ -146,7 +154,7 @@
<img
src=
"../asset/image/icon/files.png"
alt=
"..."
class=
"preview"
>
<img
src=
"../asset/image/icon/files.png"
alt=
"..."
class=
"preview"
>
</button>
</button>
<button
type=
"button"
class=
"btn btn-success btnCreate"
data-toggle=
"tooltip"
title=
"สร้างกราฟ"
style=
"margin-left:10px;"
<button
type=
"button"
class=
"btn btn-success btnCreate"
data-toggle=
"tooltip"
title=
"สร้างกราฟ"
style=
"margin-left:10px;"
onclick=
"
editChart('./customChart/mainCustom.html','./customeChart/editChart.html','./customeChart/showChart
.html')"
>
onclick=
"
ChartEdit('./customChart/01/01
.html')"
>
<img
src=
"../asset/image/icon/create.png"
alt=
"..."
class=
"preview"
>
<img
src=
"../asset/image/icon/create.png"
alt=
"..."
class=
"preview"
>
</button>
</button>
<br>
<br>
...
@@ -461,6 +469,15 @@
...
@@ -461,6 +469,15 @@
<script
src=
"../asset/bootstrap/js/bootstrap.bundle.min.js"
></script>
<script
src=
"../asset/bootstrap/js/bootstrap.bundle.min.js"
></script>
<script>
<script>
function
ChartEdit
(
path
)
{
var
win
=
window
.
open
(
path
,
'_blank'
);
if
(
win
)
{
win
.
focus
();
}
else
{
alert
(
'อนุญาติให้เปิดเว็บไซต์'
);
}
}
function
previewShow
(
path
)
{
function
previewShow
(
path
)
{
var
win
=
window
.
open
(
path
,
'_blank'
);
var
win
=
window
.
open
(
path
,
'_blank'
);
if
(
win
)
{
if
(
win
)
{
...
...
week05/windowapp/chartMenu/graph02.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph03.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph04.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph05.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph06.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph07.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph08.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph09.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/chartMenu/graph10.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"../img/icon/icon.png"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"../asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"../asset/css/round-about.css"
>
<style>
<style>
...
...
week05/windowapp/css/.DS_Store
0 → 100644
View file @
576bd481
File added
week05/windowapp/graph.html
View file @
576bd481
...
@@ -4,6 +4,14 @@
...
@@ -4,6 +4,14 @@
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
ออกแบบกราฟของคุณ
</title>
<title>
ออกแบบกราฟของคุณ
</title>
<meta
name=
"description"
content=
"เว็บไซต์แนะนำเกี่ยวกับนายวินัย บุตรศาสตร์"
>
<meta
name=
"keywords"
content=
"Nize portfolio template"
>
<meta
name=
"author"
content=
"Nize"
>
<!-- Favicons
================================================== -->
<link
rel=
"icon"
href=
"./img/icon/icon.png"
>
<link
href=
"./asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"./asset/bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
rel=
"stylesheet"
href=
"./asset/css/round-about.css"
>
<link
rel=
"stylesheet"
href=
"./asset/css/round-about.css"
>
<style>
<style>
...
@@ -152,7 +160,7 @@
...
@@ -152,7 +160,7 @@
<img
src=
"./asset/image/icon/files.png"
alt=
"..."
class=
"preview"
>
<img
src=
"./asset/image/icon/files.png"
alt=
"..."
class=
"preview"
>
</button>
</button>
<button
type=
"button"
class=
"btn btn-success btnCreate"
data-toggle=
"tooltip"
title=
"สร้างกราฟ"
style=
"margin-left:10px;"
<button
type=
"button"
class=
"btn btn-success btnCreate"
data-toggle=
"tooltip"
title=
"สร้างกราฟ"
style=
"margin-left:10px;"
onclick=
"editChart('./customChart/mainCustom.html','./customeChart/editChart.html','./customeChart/showChart
.html')"
>
onclick=
"ChartEdit('./chartMenu/customChart/01/01
.html')"
>
<img
src=
"./asset/image/icon/create.png"
alt=
"..."
class=
"preview"
>
<img
src=
"./asset/image/icon/create.png"
alt=
"..."
class=
"preview"
>
</button>
</button>
<br>
<br>
...
@@ -469,6 +477,15 @@
...
@@ -469,6 +477,15 @@
<script
src=
"./asset/bootstrap/js/bootstrap.bundle.min.js"
></script>
<script
src=
"./asset/bootstrap/js/bootstrap.bundle.min.js"
></script>
<!-- <script src="./asset/js/canvasjs/canvasjs.min.js"></script> -->
<!-- <script src="./asset/js/canvasjs/canvasjs.min.js"></script> -->
<script>
<script>
function
ChartEdit
(
path
)
{
var
win
=
window
.
open
(
path
,
'_blank'
);
if
(
win
)
{
win
.
focus
();
}
else
{
alert
(
'อนุญาติให้เปิดเว็บไซต์'
);
}
}
function
previewShow
(
path
)
{
function
previewShow
(
path
)
{
var
win
=
window
.
open
(
path
,
'_blank'
);
var
win
=
window
.
open
(
path
,
'_blank'
);
if
(
win
)
{
if
(
win
)
{
...
...
week05/windowapp/release-builds/Easy-win32-ia32/Easy.exe
0 → 100644
View file @
576bd481
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment