Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
2158 Visualizzazioni

how to customize bar color in graph view basead on field state.
need the color of the column in the chart to be based on

state = fields.Selection(
[('green', 'Green'),
('yellow', 'Yellow'),
('red', 'Red'),],
string="State", index=True)

custom_render.js

odoo.define('organizational_climate_outtech.custom_graph_renderer', function (require) {
"use strict";

var GraphRenderer = require('web.GraphRenderer');
var core = require('web.core');

var CustomGraphRenderer = GraphRenderer.extend({
// Adicione sua lógica personalizada aqui
COLORS: ["#0c774f", "#ff0017", "#ffef45",],
});

return CustomGraphRenderer;
});


Avatar
Abbandona
Risposta migliore

Hi,
Refer to this blog, It shows How to Change the Color on a Progress Bar in Odoo14


https://www.cybrosys.com/blog/how-to-change-the-color-on-a-progress-bar-in-odoo14

Hope it helps

Avatar
Abbandona
Autore

I need to change the color of the bar chart in graph view

Post correlati Risposte Visualizzazioni Attività
0
mag 22
3498
0
mag 23
3157
1
gen 23
7989
1
dic 20
7521
1
mag 25
8210