Page 1 of 1

Rendering errors?

Posted: Friday 15 March 2024 21:54
by Kiekerjan
For one of my graphs (gas consumption) I get a strange looking graph which seems to me like a rendering error. I only see these when displayed on the tablet (Lenovo TB-8505X, Android 10). Viewed on my PC everything looks normal. The odd thing is that I don't see that with other grpahs.
Has anybody else seen this and perhaps has an idea to fix it? I tried changing the tranparency or lineTension but that makes no difference.

Code: Select all

blocks['GasGraph'] = {
    title: 'Gasverbruik',
    devices: ['123'],
    graph: ['line'],
    lineFill: [true],
    lineTension: 0.4,
    zoom: 'x',
    stacked: true,
    custom :{
	"6 uur": {
            range: 'day',
            filter: '6 hours',
            data: {
                Gasverbruik: 'd.v_123',
            }
        },
	"12 uur": {
            range: 'day',
            filter: '12 hours',
            data: {
              Gasverbruik: 'd.v_123',
            }
        },

	"24 uur": {
            range: 'day',
            filter: '24 hours',
            data: {
              Gasverbruik: 'd.v_123',
            }
        },
        "2 weken": {
            range: 'month',
            filter: '14 days',
	    graph: ['bar'],
            data: {
              Gasverbruik: 'd.v_123',
            }
        }
     },
    legend: false,
    datasetColors:['rgba(255, 255, 0, 0.7']  
gas.jpg
gas.jpg (46.59 KiB) Viewed 2371 times

Re: Rendering errors?

Posted: Saturday 16 March 2024 13:51
by HansieNL
Have you already tried different browsers?

Re: Rendering errors?

Posted: Tuesday 26 March 2024 10:09
by Kiekerjan
HansieNL wrote: Saturday 16 March 2024 13:51 Have you already tried different browsers?
I use a kiosk app but it could indeed be related to that. I will try some configurations.