Dashticz v3.2.0 beta

Dashticz, alternative dashboard based on HTML, CSS, jQuery

Moderators: leecollings, htilburgs, robgeerts

pvklink
Posts: 822
Joined: Wednesday 12 November 2014 15:01
Target OS: Raspberry Pi / ODroid
Domoticz version: latest b
Contact:

Re: v3.2.0 beta

Post by pvklink »

@lokonli

It works!
My to_do_styling list is after months from 15 to 1
What to do if the last one is solved....
Raspberry (raspbian on rpi 3) , Domoticz Beta, dzVents , RFXtrx433e, P1, Hue, Yeelight, Zwave+, X10, ESP(easy), MQTT,Weather Underground, System Alive Checker, Domoticz Remote Server to RPI with Google Assistant,
Jablotron connection, Ikea
Lokonli
Posts: 2291
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Lokonli »

Vomera wrote: Thursday 14 November 2019 9:23 After updating to 3.2.0 my script for status displaying the washing machine doesnt work anymore.


It works great in 3.1.0 (still have 3.1.0 version also). I

Custom.js

Code: Select all

 
// wasmachine
function getChange_7344_1(idx,value,device){

    if(parseFloat(device['Usage'])==1){
      $('div.block_7344_1').addClass('warninggreen').removeClass('warningrood');
	  blocks['7344_1']['icon'] = 'fas fa-check';
	  blocks['7344_1']['title'] = 'Wasmachine klaar en staat nog aan';	  
	  
   }
   
   else if(parseFloat(device['Usage'])==0){
      $('div.block_7344_1').removeClass('warninggreen').removeClass('warningrood');
	  blocks['7344_1']['icon'] = 'fas fa-power-off';
	  blocks['7344_1']['title'] = 'Wasmachine uit';
   }
     
   else {
      $('div.block_7344_1').removeClass('warninggreen').addClass('warningrood');
	  blocks['7344_1']['icon'] = 'fas fa-tshirt';
	  blocks['7344_1']['title'] = 'Wasmachine is bezig';
	  
   }	 
}  
custom.css

Code: Select all

.warninggreen {
	background: rgba(154,205,50,1.0) !important;
    background-clip: padding-box;
}

.warningrood {
	background: rgba(199,44,44,1.0) !important;  
	background-clip: padding-box;	
}
Cannot find the faillure of the code...
That is indeed a bug :(

Fixed in most recent beta...
Can you test?
User avatar
HansieNL
Posts: 964
Joined: Monday 28 September 2015 15:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by HansieNL »

pvklink wrote: Thursday 14 November 2019 19:07 @lokonli

It works!
My to_do_styling list is after months from 15 to 1
What to do if the last one is solved....
Help other people with their Dashticz dashboard!!!
Mine is finished too... https://www.domoticz.com/forum/viewtop ... 60#p227648
Blah blah blah
Vomera
Posts: 184
Joined: Wednesday 06 September 2017 9:11
Target OS: Linux
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Vomera »

Lokonli wrote: Thursday 14 November 2019 22:28
Vomera wrote: Thursday 14 November 2019 9:23 After updating to 3.2.0 my script for status displaying the washing machine doesnt work anymore.


It works great in 3.1.0 (still have 3.1.0 version also). I

Custom.js

Code: Select all

 
// wasmachine
function getChange_7344_1(idx,value,device){

    if(parseFloat(device['Usage'])==1){
      $('div.block_7344_1').addClass('warninggreen').removeClass('warningrood');
	  blocks['7344_1']['icon'] = 'fas fa-check';
	  blocks['7344_1']['title'] = 'Wasmachine klaar en staat nog aan';	  
	  
   }
   
   else if(parseFloat(device['Usage'])==0){
      $('div.block_7344_1').removeClass('warninggreen').removeClass('warningrood');
	  blocks['7344_1']['icon'] = 'fas fa-power-off';
	  blocks['7344_1']['title'] = 'Wasmachine uit';
   }
     
   else {
      $('div.block_7344_1').removeClass('warninggreen').addClass('warningrood');
	  blocks['7344_1']['icon'] = 'fas fa-tshirt';
	  blocks['7344_1']['title'] = 'Wasmachine is bezig';
	  
   }	 
}  
custom.css

Code: Select all

.warninggreen {
	background: rgba(154,205,50,1.0) !important;
    background-clip: padding-box;
}

.warningrood {
	background: rgba(199,44,44,1.0) !important;  
	background-clip: padding-box;	
}
Cannot find the faillure of the code...
That is indeed a bug :(

Fixed in most recent beta...
Can you test?
Yes it works again :D thank you! another problem solved
madradrakie
Posts: 64
Joined: Wednesday 11 September 2019 21:24
Target OS: -
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by madradrakie »

After updating to the new beta my graphs are shown like this. How can i make the bars thicker just like in the previous version?
Knipsel.JPG
Knipsel.JPG (150.43 KiB) Viewed 1312 times
This is the code i use at the moment. Thanks for your help

Code: Select all

blocks['graph_76'] = {
	title: 'Energieverbruik',
	graph: ['line','bar','bar'],
	datasetColors:['blue','red','yellow'],
	legend: true,	
	displayFormats : {
    		minute: 'kk:mm',
		hour: 'D MMM',
		day: 'll',
      		week: 'ww',
	      	month: 'MMM D',},
	custom :{
        	"last hours": {
	            range: 'day',
        	    filter: '6 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"today": {
	            range: 'day',
        	    filter: '10 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last week": {
	            range: 'month',
        	    filter: '1 week',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last month": {
	            range: 'year',
        	    filter: '1 months',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
  	}
}
madradrakie
Posts: 64
Joined: Wednesday 11 September 2019 21:24
Target OS: -
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by madradrakie »

and another question. After updating to the new version two of my buttons (which i use for hyperlinks to another slide) are very big. I can not find the problem.
Knipsel.JPG
Knipsel.JPG (34.09 KiB) Viewed 1311 times
This is the part of the code i always used.

Code: Select all

buttons.p1 = {key: 'Scenes', width:3, icon: 'fas fa-home', title: 'Home',slide:1 }
buttons.p2 = {key: 'Beneden', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.2',slide:2 }
buttons.p3 = {key: 'Boven', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.3',slide:3 }
buttons.p4 = {key: 'Energie', width:3, icon: 'fas fa-bolt', title: 'Power',slide:4 }
buttons.p5 = {key: 'Water', width:3, icon: 'fas fa-shower', title: 'Water',slide:5 }
buttons.p6 = {key: 'Muziek', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.6',slide:6 }
Lokonli
Posts: 2291
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Lokonli »

madradrakie wrote: Monday 18 November 2019 22:22 After updating to the new beta my graphs are shown like this. How can i make the bars thicker just like in the previous version?

Knipsel.JPG

This is the code i use at the moment. Thanks for your help

Code: Select all

blocks['graph_76'] = {
	title: 'Energieverbruik',
	graph: ['line','bar','bar'],
	datasetColors:['blue','red','yellow'],
	legend: true,	
	displayFormats : {
    		minute: 'kk:mm',
		hour: 'D MMM',
		day: 'll',
      		week: 'ww',
	      	month: 'MMM D',},
	custom :{
        	"last hours": {
	            range: 'day',
        	    filter: '6 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"today": {
	            range: 'day',
        	    filter: '10 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last week": {
	            range: 'month',
        	    filter: '1 week',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last month": {
	            range: 'year',
        	    filter: '1 months',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
  	}
}
What was your previous version?
Lokonli
Posts: 2291
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Lokonli »

madradrakie wrote: Monday 18 November 2019 22:25 and another question. After updating to the new version two of my buttons (which i use for hyperlinks to another slide) are very big. I can not find the problem.

Knipsel.JPG

This is the part of the code i always used.

Code: Select all

buttons.p1 = {key: 'Scenes', width:3, icon: 'fas fa-home', title: 'Home',slide:1 }
buttons.p2 = {key: 'Beneden', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.2',slide:2 }
buttons.p3 = {key: 'Boven', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.3',slide:3 }
buttons.p4 = {key: 'Energie', width:3, icon: 'fas fa-bolt', title: 'Power',slide:4 }
buttons.p5 = {key: 'Water', width:3, icon: 'fas fa-shower', title: 'Water',slide:5 }
buttons.p6 = {key: 'Muziek', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.6',slide:6 }
Which buttons are bigger? What do you mean with very big?
In beta v3.2.0 the default size of button titles was changed. You can change it via custom.css. Probably:

Code: Select all

.dt_title {
	font-size: 100%;
}
madradrakie
Posts: 64
Joined: Wednesday 11 September 2019 21:24
Target OS: -
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by madradrakie »

Lokonli wrote: Monday 18 November 2019 22:51
madradrakie wrote: Monday 18 November 2019 22:22 After updating to the new beta my graphs are shown like this. How can i make the bars thicker just like in the previous version?

Knipsel.JPG

This is the code i use at the moment. Thanks for your help

Code: Select all

blocks['graph_76'] = {
	title: 'Energieverbruik',
	graph: ['line','bar','bar'],
	datasetColors:['blue','red','yellow'],
	legend: true,	
	displayFormats : {
    		minute: 'kk:mm',
		hour: 'D MMM',
		day: 'll',
      		week: 'ww',
	      	month: 'MMM D',},
	custom :{
        	"last hours": {
	            range: 'day',
        	    filter: '6 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"today": {
	            range: 'day',
        	    filter: '10 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last week": {
	            range: 'month',
        	    filter: '1 week',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last month": {
	            range: 'year',
        	    filter: '1 months',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
  	}
}
What was your previous version?

The previous version was 3.1.2. It looks like the graphs shows a value which is given by Domoticz every 5 minutes. But the x-axes shows a value every minute. In the previous version the graph only showed a value every 5 minutes and that is probably why the bars appeared bigger?
Attachments
Knipsel.JPG
Knipsel.JPG (372.72 KiB) Viewed 1278 times
Last edited by madradrakie on Tuesday 19 November 2019 22:10, edited 2 times in total.
madradrakie
Posts: 64
Joined: Wednesday 11 September 2019 21:24
Target OS: -
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by madradrakie »

Lokonli wrote: Monday 18 November 2019 22:58
madradrakie wrote: Monday 18 November 2019 22:25 and another question. After updating to the new version two of my buttons (which i use for hyperlinks to another slide) are very big. I can not find the problem.

Knipsel.JPG

This is the part of the code i always used.

Code: Select all

buttons.p1 = {key: 'Scenes', width:3, icon: 'fas fa-home', title: 'Home',slide:1 }
buttons.p2 = {key: 'Beneden', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.2',slide:2 }
buttons.p3 = {key: 'Boven', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.3',slide:3 }
buttons.p4 = {key: 'Energie', width:3, icon: 'fas fa-bolt', title: 'Power',slide:4 }
buttons.p5 = {key: 'Water', width:3, icon: 'fas fa-shower', title: 'Water',slide:5 }
buttons.p6 = {key: 'Muziek', width:2, btnimage: 'img/favicon/largetile.png', title: 'P.6',slide:6 }
Which buttons are bigger? What do you mean with very big?
In beta v3.2.0 the default size of button titles was changed. You can change it via custom.css. Probably:

Code: Select all

.dt_title {
	font-size: 100%;
}
your solution worked but the buttons have a different height than for example my scenes or light buttons (see image). Also the text is shown right from the icon instead of beneath. Is it possible to adjust these things in for example the css file? Do you know how? I have searched the forum but could not find the solution yet.
Attachments
Knipsel.JPG
Knipsel.JPG (25.06 KiB) Viewed 1280 times
pvklink
Posts: 822
Joined: Wednesday 12 November 2014 15:01
Target OS: Raspberry Pi / ODroid
Domoticz version: latest b
Contact:

Re: v3.2.0 beta

Post by pvklink »

With one off the last updates (dont know which) i had to reinstall my zwave devices. My wasmachine_kwh usage device was a type generic and after reinstall type electric. I changed my dzventscode , so far all succesfull..

My js code in dashticz also didnt work. I had to change 1864_1 to 1864 and in my old version i could use 'Usage' ..
This does not work anymore.. i also tried Data and value..
perhaps it has something to to that this type has more than only a numeric value but also Watt in the value?
I could use some help....

Code: Select all

//1864_1 changed to 1864 en Usage changed to Data, value etc.
function getChange_1864(idx,value,device)
{if(parseFloat(device['Usage'])>1)
	{
	blocks['1864']['icon'] = 'fas fa-thermometer-full';
	} 
else	{
	blocks['1864']['icon'] = 'fas fa-thermometer-half';
	}
}
data from device

Code: Select all

{
   "ActTime" : 1574244476,
   "AstrTwilightEnd" : "18:46",
   "AstrTwilightStart" : "06:11",
   "CivTwilightEnd" : "17:24",
   "CivTwilightStart" : "07:33",
   "DayLength" : "08:35",
   "NautTwilightEnd" : "18:05",
   "NautTwilightStart" : "06:51",
   "ServerTime" : "2019-11-20 11:07:56",
   "SunAtSouth" : "12:28",
   "Sunrise" : "08:11",
   "Sunset" : "16:46",
   "app_version" : "4.11492",
   "result" : [
      {
         "AddjMulti" : 1.0,
         "AddjMulti2" : 1.0,
         "AddjValue" : 0.0,
         "AddjValue2" : 0.0,
         "BatteryLevel" : 255,
         "CustomImage" : 0,
         "Data" : "25 Watt",
         "Description" : "",
         "Favorite" : 0,
         "HardwareID" : 10,
         "HardwareName" : "zwavepluspvk",
         "HardwareType" : "OpenZWave USB",
         "HardwareTypeVal" : 21,
         "HaveTimeout" : false,
         "ID" : "0000E04",
         "LastUpdate" : "2019-11-20 11:07:16",
         "Name" : "wasmachine_kwh",
         "Notifications" : "false",
         "PlanID" : "0",
         "PlanIDs" : [ 0 ],
         "Protected" : false,
         "ShowNotifications" : true,
         "SignalLevel" : "-",
         "SubType" : "Electric",
         "Timers" : "false",
         "Type" : "Usage",
         "TypeImg" : "current",
         "Unit" : 2,
         "Used" : 1,
         "XOffset" : "0",
         "YOffset" : "0",
         "idx" : "1864"
      }
   ],
   "status" : "OK",
   "title" : "Devices"
}
Raspberry (raspbian on rpi 3) , Domoticz Beta, dzVents , RFXtrx433e, P1, Hue, Yeelight, Zwave+, X10, ESP(easy), MQTT,Weather Underground, System Alive Checker, Domoticz Remote Server to RPI with Google Assistant,
Jablotron connection, Ikea
pvklink
Posts: 822
Joined: Wednesday 12 November 2014 15:01
Target OS: Raspberry Pi / ODroid
Domoticz version: latest b
Contact:

Re: v3.2.0 beta

Post by pvklink »

ha, i am proud..

Solved it myself........but i dont know why this one works.. ! o.a changed to another function getStatus instead off GetChange

function getStatus_1864(idx,value,device)
{
if (parseFloat(device.Data) >1)
{
blocks['1864']['title'] = 'Wasmachine Aan';
blocks['1864']['icon'] = 'fas fa-thermometer-full';
}

else {
blocks['1864']['title'] = 'Wasmachine Uit';
blocks['1864']['icon'] = 'fas fa-thermometer-half';
}

}
Raspberry (raspbian on rpi 3) , Domoticz Beta, dzVents , RFXtrx433e, P1, Hue, Yeelight, Zwave+, X10, ESP(easy), MQTT,Weather Underground, System Alive Checker, Domoticz Remote Server to RPI with Google Assistant,
Jablotron connection, Ikea
Lokonli
Posts: 2291
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Lokonli »

Well done! :)

I guess it's the same bug as reported by Vomera.
See https://www.domoticz.com/forum/viewtopi ... 03#p228403

It's solved in the latest beta.
pvklink
Posts: 822
Joined: Wednesday 12 November 2014 15:01
Target OS: Raspberry Pi / ODroid
Domoticz version: latest b
Contact:

Re: v3.2.0 beta

Post by pvklink »

i have v3.2.0

and after updating to a new beta, do i have to use
getStatus or the orignal GetChange (i use it when powerconsumption changes above or below a value)

I guess this has nothing to do that i must use Data instead of Usage property ? (think that is zwave related)..
Raspberry (raspbian on rpi 3) , Domoticz Beta, dzVents , RFXtrx433e, P1, Hue, Yeelight, Zwave+, X10, ESP(easy), MQTT,Weather Underground, System Alive Checker, Domoticz Remote Server to RPI with Google Assistant,
Jablotron connection, Ikea
Lokonli
Posts: 2291
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Lokonli »

pvklink wrote: Wednesday 20 November 2019 16:36 i have v3.2.0

and after updating to a new beta, do i have to use
getStatus or the orignal GetChange (i use it when powerconsumption changes above or below a value)

I guess this has nothing to do that i must use Data instead of Usage property ? (think that is zwave related)..
I did not update the version number yet. I'll collect a few changes first.

Both should work. GetChange only gets called if the device was updated.

Whether you have to use Data or Usage depends indeed on the device. You can check the raw json device info from Domoticz to look for the fieldname you have to use.
pvklink
Posts: 822
Joined: Wednesday 12 November 2014 15:01
Target OS: Raspberry Pi / ODroid
Domoticz version: latest b
Contact:

Re: v3.2.0 beta

Post by pvklink »

Ok, no problem and no hurry. When there is a new version, i will test again...with both functions...

When does getStatus_1864 activates, with a screen refresh?
Raspberry (raspbian on rpi 3) , Domoticz Beta, dzVents , RFXtrx433e, P1, Hue, Yeelight, Zwave+, X10, ESP(easy), MQTT,Weather Underground, System Alive Checker, Domoticz Remote Server to RPI with Google Assistant,
Jablotron connection, Ikea
Dave47
Posts: 136
Joined: Thursday 19 July 2018 14:36
Target OS: -
Domoticz version: 2023.1
Contact:

Re: v3.2.0 beta

Post by Dave47 »

Hallo is it possible tu use speak in blocks @ the moment?
How do i set?
Must i also change settings in config parameter?
User avatar
HansieNL
Posts: 964
Joined: Monday 28 September 2015 15:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by HansieNL »

Dave47 wrote: Thursday 21 November 2019 10:12 Hallo is it possible tu use speak in blocks @ the moment?
How do i set?
Must i also change settings in config parameter?
I don’t use speak. But I don’t see an issue with speak.
All block parameters you can find here: https://dashticz.readthedocs.io/en/bet ... parameters
And you have to set the speak_lang in config.
Blah blah blah
Dave47
Posts: 136
Joined: Thursday 19 July 2018 14:36
Target OS: -
Domoticz version: 2023.1
Contact:

Re: v3.2.0 beta

Post by Dave47 »

speak_lang in config. did not work if device is not in the same language?

I set device on nl_NL, but the device is in Englisch.
Lokonli
Posts: 2291
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: v3.2.0 beta

Post by Lokonli »

madradrakie wrote: Tuesday 19 November 2019 20:57
Lokonli wrote: Monday 18 November 2019 22:51
madradrakie wrote: Monday 18 November 2019 22:22 After updating to the new beta my graphs are shown like this. How can i make the bars thicker just like in the previous version?

Knipsel.JPG

This is the code i use at the moment. Thanks for your help

Code: Select all

blocks['graph_76'] = {
	title: 'Energieverbruik',
	graph: ['line','bar','bar'],
	datasetColors:['blue','red','yellow'],
	legend: true,	
	displayFormats : {
    		minute: 'kk:mm',
		hour: 'D MMM',
		day: 'll',
      		week: 'ww',
	      	month: 'MMM D',},
	custom :{
        	"last hours": {
	            range: 'day',
        	    filter: '6 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"today": {
	            range: 'day',
        	    filter: '10 hours',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last week": {
	            range: 'month',
        	    filter: '1 week',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
        	"last month": {
	            range: 'year',
        	    filter: '1 months',
	            data: {
        	        nett: 'd.v+d.v2-d.r1-d.r2',
                	usage: 'd.v+d.v2',
	                generation: '-d.r1-d.r2'
            }
        },
  	}
}
What was your previous version?

The previous version was 3.1.2. It looks like the graphs shows a value which is given by Domoticz every 5 minutes. But the x-axes shows a value every minute. In the previous version the graph only showed a value every 5 minutes and that is probably why the bars appeared bigger?
I think that is the reason indeed. It might be a side effect of the latest version of the chart.js module that is being used.

You can modify the x-axis behavior by adding the following to the block definition:

Code: Select all

    options: {
        scales: {
            xAxes: [{
                    distribution: 'series'
            }]
        },
    }
Probably I'll will make this default in the next beta release.
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest