Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Graph bar in kanban

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
graphkanbancardbarodoo
2 Antwoorden
2739 Weergaven
Avatar
Uzair

i have made a graph in kanban the colour of the graph is light gray by default if there is data inside my widget is widget="dashboard_graph", but i want to change the colour to light blue if there is data i did not find any widget my code is below:

Colonization
Property Types
Property Stages
0
Avatar
Annuleer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste antwoord

Hi,

If you are using the widget "dashboard_graph" and you need change the color of the graph, then you may need to check the JS file of the widget and you can patch the js file and change the color in it. The Js file is "JournalDashboardGraphField" you can search for this class in the JS file and make the changes.

You can refer to our below blog to get idea on patching a component in js https://www.cybrosys.com/blog/how-to-patch-existing-owl-component-in-odoo-17


Hope it helps

0
Avatar
Annuleer
Avatar
Shajahan
Beste antwoord

To change the color of a graph in an Odoo Kanban view based on whether there is data or not, you can achieve this by customizing the CSS styles of the graph widget based on the presence of data. Since there's no built-in widget for this specific requirement, you'll need to use custom JavaScript and CSS.

Here's a general approach to accomplish this:

  1. Identify the Graph Element: First, you'll need to identify the HTML element of the graph widget in your Kanban view. You can do this by inspecting the page source in your web browser.
  2. Add Custom JavaScript: Write JavaScript code to check if there is data present in the graph widget. This can involve querying the data and analyzing its presence.
  3. Update CSS Styles: Based on the presence or absence of data, dynamically update the CSS styles of the graph widget to change its color accordingly.

Here's a simplified example of how you might implement this:

javascriptCopy codeodoo.define('your_module_name.custom_dashboard_graph', function (require) {
    "use strict";

    var KanbanView = require('web.KanbanView');

    KanbanView.include({
        // Override the `render` method to add custom logic
        render: function () {
            var self = this;
            this._super.apply(this, arguments);
            
            // Check if there is data in the graph widget
            // For simplicity, let's assume `this` refers to the Kanban view element
            var $graphWidget = this.$('.o_dashboard_graph');
            var hasData = ... // Your logic to check if data is present

            // Update CSS styles based on data presence
            if (hasData) {
                $graphWidget.css('background-color', 'lightblue');
            } else {
                $graphWidget.css('background-color', 'lightgray');
            }
        },
    });
});

Please note that this is a simplified example, and you'll need to adjust it based on your specific requirements and the structure of your Odoo module. You may also need to handle asynchronous data loading if applicable.

Remember to replace 'your_module_name' with the actual name of your Odoo module.

Additionally, you may need to consider browser compatibility and other factors while implementing custom JavaScript and CSS in Odoo. Testing thoroughly across different browsers and devices is recommended.

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
how to invisible graph bar in kanban Opgelost
graph kanban invisible card bar
Avatar
Avatar
2
mei 24
2133
Show measure value on odoo graph without hovering.
graph bar odoo piechart
Avatar
Avatar
1
aug. 23
3045
Pass values ​​from one stage to another in kanban view, odoo 14[SOLVED] Opgelost
kanban odoo
Avatar
Avatar
1
jun. 23
3475
How to extend the setup of a kanban component and pass data to a new form in Odoo? Opgelost
kanban odoo OWL
Avatar
1
dec. 23
3322
How to have multiple bars per item on the x-axis on graph view?
development graph bar
Avatar
Avatar
Avatar
2
sep. 23
12375
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now