Giter Site home page Giter Site logo

Comments (5)

junedchhipa avatar junedchhipa commented on April 30, 2024 1

@arkhenstone Tested the date.toLocaleString() function and it looks like it returns the full date and time in this format 20/12/2012 03:00:00
This will result in more work for me to split the string and re-calculate label count and determine if years/months/day should be displayed.

I suggest, using the options.xaxis.labels.formatter function to override dates/times to suit your needs.
Here is an example using moment.js in formatter
https://codepen.io/apexcharts/pen/MBRrbX

and here is an example of how you can use .toLocaleString() in options.xaxis.labels.formatter function
https://codepen.io/apexcharts/pen/oMOdBv

from apexcharts.js.

Carniatto avatar Carniatto commented on April 30, 2024

I checked your example and the date passed to the formatter is already formatted before. If you put two different years in the series it gets all wrong.

I think it should pass the raw value to the formatter

from apexcharts.js.

junedchhipa avatar junedchhipa commented on April 30, 2024

Ah! right.
I will check that.

from apexcharts.js.

junedchhipa avatar junedchhipa commented on April 30, 2024

I have provided an additional parameter in options.xaxis.labels.formatter as a timestamp which you can use to format dates as per your needs.

Example:

xaxis: {
  tickAmount: 6,
  labels: {
    formatter: function(val, timestamp) {
      return moment(timestamp).format("DD MMM YYYY");
    }
  }
},

Note that here - tickAmount will respond to the value you provide.
Read more - https://apexcharts.com/docs/options/xaxis/#formatter

With this update, I have also provided localization options which you can set in options.chart.locales
Read more - https://apexcharts.com/docs/options/chart/locales/

So, from now on: you will be able to set your preferred language strings in some elements.

Cheers

from apexcharts.js.

junedchhipa avatar junedchhipa commented on April 30, 2024

Can we close this if I have not missed anything regarding localization?

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.