Giter Site home page Giter Site logo

Comments (1)

junedchhipa avatar junedchhipa commented on April 30, 2024 3

HI Alejandro,

Thanks for reporting the issue.

The legends are drawn by SVG methods so not easily controlled with CSS. The toolbar is a collection of simple HTML elements and is customizable with the help of CSS.
So, we can move the toolbar up/down if it's getting in the way when we put the legends at the top. Or we can move the legends in options which I will show in the example below.

The reason - why I haven't set defaults for each of these options is that all users will have different requirements where to put the legends / where to put the toolbar, etc.
So, I leave up to the users to customize with simple tweaks (margin/offsets) - where they want to put these elements. That doesn't mean I haven't checked for possibilities that can go wrong when setting these tweaks. It's just that it is difficult to test all the possibilities of these placements.

To fight your issue of too lengthy legends,
I have tweaked the legend property to the following

legend: {
    show: true,
    position: "top",
    containerMargin: {
      top: 30
    }
  },

This will give enough space for the toolbar that floats in the top-right corner.

And - to fight your issue of "too long legends getting cropped in mobile", we can set the responsive options to set the smaller font size for legends in smaller devices.

responsive: [
    {
      breakpoint: 500,
      options: {
        legend: {
          fontSize: "11px"
        }
      }
    }
  ]

Here is the complete codepen example

from apexcharts.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.