-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7305d2e
commit 3eec82c
Showing
15 changed files
with
106 additions
and
15 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,7 +119,5 @@ run_click(""); | |
|
||
sys.Run_JS_Out("Clock\\参考消息.js"); | ||
|
||
|
||
sys.Tray_Show(sys.Path_JS()+"\\clock2.ico"); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<script type="text/javascript" src="http://www.funnyai.com/Common/js/jquery-1.11.0.min.js"></script> | ||
<script type="text/javascript" src="https://www.echartsjs.com/examples/vendors/echarts/echarts.min.js?_v_=1567111902585"></script> | ||
<title>echarts</title> | ||
|
||
</head><body style="margin:0px"> | ||
|
||
<div id="main" style="height:600px"></div> | ||
|
||
<script type="text/javascript"> | ||
var myChart = echarts.init(document.getElementById('main')); | ||
var symbolSize = 20; | ||
var data = [ [0,0],[1,2],[2,3],[3,3.5],[4,4],[5,4.5],[6,5],[7,6] ]; | ||
|
||
var option = { | ||
title: { | ||
text: '图表' | ||
}, | ||
tooltip: { | ||
formatter: function (params) { | ||
return 'X: ' + params.data[0].toFixed(2) + '<br>Y: ' + params.data[1].toFixed(2); | ||
} | ||
}, | ||
grid: { | ||
}, | ||
xAxis: { | ||
min: 0, | ||
max: 10, | ||
type: 'value', | ||
axisLine: {onZero: false} | ||
}, | ||
yAxis: { | ||
min: 0, | ||
max: 10, | ||
type: 'value', | ||
axisLine: {onZero: false} | ||
}, | ||
dataZoom: [ | ||
{ | ||
type: 'slider', | ||
xAxisIndex: 0, | ||
filterMode: 'empty' | ||
}, | ||
{ | ||
type: 'slider', | ||
yAxisIndex: 0, | ||
filterMode: 'empty' | ||
}, | ||
{ | ||
type: 'inside', | ||
xAxisIndex: 0, | ||
filterMode: 'empty' | ||
}, | ||
{ | ||
type: 'inside', | ||
yAxisIndex: 0, | ||
filterMode: 'empty' | ||
} | ||
], | ||
series: [ | ||
{ | ||
id: 'a', | ||
type: 'line', | ||
smooth: true, | ||
symbolSize: symbolSize, | ||
data: data | ||
} | ||
] | ||
}; | ||
|
||
|
||
|
||
myChart.setOption(option); | ||
</script> | ||
|
||
</body> | ||
</html> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters