mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
* Update: ES 图 X 轴 splitline 默认显示 * Docs: 文档细节更新和修复测试 * Docs: 错别字修正 * Docs: better docs * Docs: 挪上去
63 lines
2.0 KiB
HTML
63 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>pyecharts - A Python Echarts Plotting Library</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
|
<meta name="description" content="Description">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
<link rel="icon" href="favicon.ico">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">Loading ...</div>
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'pyecharts',
|
|
repo: 'https://github.com/pyecharts/pyecharts',
|
|
coverpage: true,
|
|
autoHeader: true,
|
|
loadSidebar: true,
|
|
loadNavbar: true,
|
|
subMaxLevel: 3,
|
|
auto2top: true,
|
|
homepage: 'zh-cn/README.md',
|
|
search: {
|
|
placeholder: {
|
|
'/': '搜索',
|
|
'/zh-cn/': '搜索',
|
|
'/en-us/': 'Type to search'
|
|
},
|
|
noData: {
|
|
'/': '找不到结果',
|
|
'/zh-cn/': '找不到结果',
|
|
'/en-us/': 'No Results'
|
|
}
|
|
},
|
|
plugins: [
|
|
function (hook) {
|
|
var footer = [
|
|
'<hr/>',
|
|
'<footer>',
|
|
'<span><a href="https://github.com/pyecharts">pyecharts</a> ©2017 - 2018.</span>',
|
|
'<span>Powered By <a href="https://github.com/QingWei-Li/docsify" target="_blank">docsify</a>.</span>',
|
|
'</footer>'
|
|
].join('');
|
|
|
|
hook.afterEach(function (html) {
|
|
return html + footer
|
|
})
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
<script src="https://cdn.bootcss.com/docsify/4.6.10/docsify.min.js"></script>
|
|
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
|
|
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
|
|
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
|
|
</body>
|
|
|
|
</html> |