Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6834823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:09:31+00:00 2026-05-26T23:09:31+00:00

Does anyone have any idea how to create a logarithmic chart in FLOT? Basically

  • 0

Does anyone have any idea how to create a logarithmic chart in FLOT?

Basically I am trying to create a chart that looks like the one shown here (top left):
http://leto.net/plot/examples/logarithms.html

However, I have given it a try using the same options but it doesn’t show the chart the same way. I think there must have been a lot of changes to FLOT since then considering that the post is quite old.

If anyone has any idea, please do let me know.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:09:32+00:00Added an answer on May 26, 2026 at 11:09 pm

    You can do this using the “transform” option on the yaxis.

    See work here.

    $(function () {
        // setup plot
        function sampleFunction(x1, x2, func) {
            var d = [ ];
            var step = (x2-x1)/300;
            for (var i = x1; i < x2; i += step )
                d.push([i, func( i ) ]);
    
            return d;
        }
    
        var options1 = {
            lines: { show: true },
            xaxis: { ticks: 4 },
            yaxis: { ticks: [0.001,0.01,0.1,1,10,100],
                     transform: function(v) {return Math.log(v+0.0001); /*move away from zero*/},
                     tickDecimals: 3 },
            grid: { hoverable: true, clickable: true, color: "#999" }
        };
    
        var data1 = sampleFunction( 0, 5, function(x){ return Math.exp(x)*Math.sin(x)*Math.sin(x) } );
    
        var plot1 = $.plot($("#chart1"),  [ { label: "exp(x)sin(x)^2", data: data1 } ], options1);
    });
    

    Full Working Code:

    $(function () {
        // setup plot
        function sampleFunction(x1, x2, func) {
            var d = [ ];
            var step = (x2-x1)/300;
            for (var i = x1; i < x2; i += step )
                d.push([i, func( i ) ]);
    
            return d;
        }
        
        var options1 = {
            lines: { show: true  },
            xaxis: { ticks: 4 },
            yaxis: { ticks: [0.001,0.01,0.1,1,10,100],
                     transform:  function(v) {return Math.log(v+0.0001); /*move away from zero*/} , tickDecimals: 3 },
            grid: { hoverable: true, clickable: true , color: "#999"}
        };
        
        var data1 = sampleFunction( 0, 5, function(x){ return Math.exp(x)*Math.sin(x)*Math.sin(x) } );
        
        var plot1 = $.plot($("#chart1"),  [ { label: "exp(x)sin(x)^2", data: data1} ], options1);
        
    });
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/flot/0.8.3/jquery.flot.min.js"></script>
    <br/><br/>
    <div id="chart1" style="width:600px;height:300px;"></div>
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone have any idea on how can you create a product filtering query
Does anyone have any idea what is wrong with this create statement for mysql?
Does anyone have any idea how to change the thickness of the text pointer
Does anyone have any idea when Microsoft might be dropping another Silverlight 4 public
Does anyone have any idea if you can find source JARs on Maven repositories?
Does anyone have any idea what this jQuery selector will do? object.find('td:eq(1) div div');
In datasets there was a method WriteXml or ReadXml Does anyone have any idea
I need to archive data from a CRM system. Does anyone have any idea
Does any one have any idea why this would be happening? This is some
Does anyone have any recommendations of tools that can be of assistance with moving

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.