mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-29 23:03:21 +00:00
RRDChart.js: add the seriesConfig parameter
so that we can override the the series with custom options like 'color' Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
fcb5b70f0e
commit
9950ec0f7d
@ -90,6 +90,7 @@ Ext.define('Proxmox.widget.RRDChart', {
|
||||
|
||||
initComponent: function() {
|
||||
var me = this;
|
||||
var series = {};
|
||||
|
||||
if (!me.store) {
|
||||
throw "cannot work without store";
|
||||
@ -145,7 +146,8 @@ Ext.define('Proxmox.widget.RRDChart', {
|
||||
if (me.fieldTitles && me.fieldTitles[index]) {
|
||||
title = me.fieldTitles[index];
|
||||
}
|
||||
me.addSeries({
|
||||
me.addSeries(Ext.apply(
|
||||
{
|
||||
type: 'line',
|
||||
xField: 'time',
|
||||
yField: item,
|
||||
@ -171,7 +173,9 @@ Ext.define('Proxmox.widget.RRDChart', {
|
||||
trackMouse: true,
|
||||
renderer: 'onSeriesTooltipRender'
|
||||
}
|
||||
});
|
||||
},
|
||||
me.seriesConfig
|
||||
));
|
||||
});
|
||||
|
||||
// enable animation after the store is loaded
|
||||
|
Loading…
Reference in New Issue
Block a user