打开/关闭菜单
切换首选项菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

模块:PChart:修订间差异

来自异世界百科
删除的内容 添加的内容
落雨枫留言 | 贡献
尝试通过scribunto让ve可以渲染雷达图
 
落雨枫留言 | 贡献
修复一个问题
第12行: 第12行:
html = html .. "<div class=\"float" .. float .. "\">"
html = html .. "<div class=\"float" .. float .. "\">"
end
end
html = html .. frame:extensionTag("pRadar", names .. "\n" .. values, {
html = html ..
frame:extensionTag("pRadar", "," .. names .. "\n" .. values, {
size = size,
ymax = max,
size = size,
filled = "",
ymax = max,
striped = "",
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