Code Monkey home page Code Monkey logo

Comments (6)

MinnML avatar MinnML commented on June 8, 2024 1

@alexcjohnson, it is the same version as you have in the picture, v2.27.1.

from react-plotly.js.

MinnML avatar MinnML commented on June 8, 2024 1

Thanks for looking at this for me. I ran the following in playcode.io. The result are as expected:

import React from 'react';
import Plot from "react-plotly.js";

export function App(props) {

  var data = [
  {
    x: ['Apples', 'Oranges', 'Watermelon', 'Pears'],
    y: [1, 2, 3, 4],
    z: [[2, 5, 6, 7], [3, 5, 6, 7], [5, 6, 1, 0], [1, 3, 4, 9]],
    type: 'heatmap'
  }
];
var layout = {
  autosize: false,
  width: 500,
  height: 500,
  yaxis: {
    title: 'Y-axis Title',
    ticktext: ['long label','Very long label','3','label'],
    tickvals: [1, 2, 3, 4],
    tickmode: 'array',
    automargin: true,
    titlefont: { size:20 },
  },
};

  return (
    <div>
        <Plot data={data} layout={layout}></Plot>
    </div>
  );
}

But putting the exact code in my source didn't work as expected.
image

As I am new to react, I cannot think of any other settings or configs that could affect this. I even tried removing the whole content of my App.css file.

from react-plotly.js.

alexcjohnson avatar alexcjohnson commented on June 8, 2024 1

Ah, nice find! I'll bring that back into the plotly.js repo and we can see about finding a fix (and/or a workaround)

from react-plotly.js.

alexcjohnson avatar alexcjohnson commented on June 8, 2024

@saber1440 what plotly.js version do you have? You can verify it by hovering on the plotly logo:
Screenshot 2024-01-04 at 20 02 16

from react-plotly.js.

alexcjohnson avatar alexcjohnson commented on June 8, 2024

hmm ok - the only other thing I can think of is sometimes if you render the plot too soon after page load it doesn't have the font yet and gets the sizing wrong - but that doesn't really look like what's going on here, that's usually only off by a little bit whereas this looks like it's not trying to automargin at all.

I suppose you can check whether plotly.js really got the right settings by looking at _fullLayout in the JS console, ie:

> document.querySelector('.js-plotly-plot')._fullLayout.yaxis.automargin  // assuming there's only one plotly plot on your page
< true

Normally there's no difference between how figures work in react-plotly.js and plain plotly.js, and your figure works fine for me in plain plotly.js https://codepen.io/alexcjohnson/pen/gOErOzO

from react-plotly.js.

MinnML avatar MinnML commented on June 8, 2024

@alexcjohnson, I figured out what is causing this issue. It is setting the body dir that I have for internationalization.
For example, try this in the example you provided in codepen.io:

<body dir='rtl'>
  <div id="myDiv"></div>
</body>

Any thoughts on how I can fix this?

from react-plotly.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.