diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-06-10 20:37:29 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-06-10 20:37:29 +0200 |
commit | cace1d80edf70538667dafc07f7419ad3df17c5b (patch) | |
tree | c66651f1b5ddc49a9151664c12e8fa2d0546c799 /applications/luci-app-statistics/luasrc/statistics/rrdtool.lua | |
parent | b1d307d3f53e6545358450850a9dedad5d3a6774 (diff) |
luci-app-statistics: support specifying line width in graph definitions
This allows a graph definition to explicitely request LINE1, LINE2 or
LINE3 for a data source.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-statistics/luasrc/statistics/rrdtool.lua')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/rrdtool.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua index 4e00e7f1fc..e29a2e17d9 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua @@ -278,7 +278,7 @@ function Graph._generic( self, opts, plugin, plugin_instance, dtype, index ) -- create line1 statement _tif( _args, "LINE%d:%s_%s#%s:%s", - source.noarea and 2 or 1, + source.width or (source.noarea and 2 or 1), source.sname, var, line_color, legend ) end |