更多操作
删除的内容 添加的内容
尝试通过scribunto让ve可以渲染雷达图 |
修复一个问题 |
||
第12行: | 第12行: | ||
html = html .. "<div class=\"float" .. float .. "\">" |
html = html .. "<div class=\"float" .. float .. "\">" |
||
end |
end |
||
html = html .. |
html = html .. |
||
frame:extensionTag("pRadar", "," .. names .. "\n" .. values, { |
|||
size = size, |
|||
size = size, |
|||
ymax = max, |
|||
filled = "", |
|||
striped = "", |
|||
}) |
|||
if(float ~= nil or float == "center" or #float == 0) then |
if(float ~= nil or float == "center" or #float == 0) then |
||
html = html .. "</div>" |
html = html .. "</div>" |
2021年5月8日 (六) 15:11的版本
此模块的文档可以在模块:PChart/doc创建
local p = {}
function p.rader(frame)
local size = frame.args.size or "200x200"
local max = frame.args.max or "5"
local names = frame.args.names or "Data"
local float = frame.args.float or nil
local values = frame.args.values or ""
local html = ""
if(float ~= nil or float == "center" or #float == 0) then
html = html .. "<div class=\"float" .. float .. "\">"
end
html = html ..
frame:extensionTag("pRadar", "," .. names .. "\n" .. values, {
size = size,
ymax = max,
filled = "",
striped = "",
})
if(float ~= nil or float == "center" or #float == 0) then
html = html .. "</div>"
end
return html
end
return p