awesome/tests/examples/wibox/widget/piechart/border_width.lua

27 lines
646 B
Lua
Raw Normal View History

2016-09-08 08:32:53 +02:00
--DOC_HIDE_ALL
local parent = ...
local wibox = require( "wibox" )
local beautiful = require( "beautiful" )
local l = wibox.layout.fixed.horizontal()
parent:add(l)
for _, v in ipairs {0,1,3,5} do
l:add(wibox.widget {
data_list = {
{ 'L1', 100 },
{ 'L2', 200 },
{ 'L3', 300 },
},
border_width = v,
forced_height = 50,
forced_width = 100,
colors = {
beautiful.bg_normal,
beautiful.bg_highlight,
beautiful.border_color,
},
widget = wibox.widget.piechart
})
2016-09-08 08:32:53 +02:00
end