Update rangeslider range on onClick event plotly.js










1















I have implemented a bar chart with rangeslider using react-plotly.js. I set initial range of the slider based on the input given in a date format. I have also implemented onClick event on barchart which would select a particular bar and change the color when I click on it.
enter image description here



In addition to that, I would also like to set the rangeslider to select the area where I have clicked the bar.
Currently, as you can see in the image above, the rangeslider sets itself back to the initial range value everytime the onClick event is performed. So in order to see the bar that was clicked, I have to manually move the slider to that area.



xaxis: 

type: 'date',
autorange: false,
fixedrange: true,
showgrid: false,
range: [moment.unix(this.state.startTime).format('YYYY-MM-DD'), moment.unix(this.state.endTime).format('YYYY-MM-DD')],
rangeslider:
visible: true


<Plot
data=this.prepData(this.state.chartData)
onClick=(data) =>
var colors = ;
var clickedPoint = data.points[0].pointNumber;
for (var i = 0; i < data.points[0].data.y.length; i++)
if (i === clickedPoint)
colors[i] = '#9b1e83';
else
colors[i] = this.state.defaultColor[i];



this.setState(
currentColorsArray: colors,
barClicked: data.points[0].pointNumber,
showSummaryPanel: true
)


onHover=(hover) => this.getHoverInfo(hover)
type='bar'
/>


How should I pass values to onRelayout such that it sets the rangeslider to the area where the onClick event was performed ?










share|improve this question


























    1















    I have implemented a bar chart with rangeslider using react-plotly.js. I set initial range of the slider based on the input given in a date format. I have also implemented onClick event on barchart which would select a particular bar and change the color when I click on it.
    enter image description here



    In addition to that, I would also like to set the rangeslider to select the area where I have clicked the bar.
    Currently, as you can see in the image above, the rangeslider sets itself back to the initial range value everytime the onClick event is performed. So in order to see the bar that was clicked, I have to manually move the slider to that area.



    xaxis: 

    type: 'date',
    autorange: false,
    fixedrange: true,
    showgrid: false,
    range: [moment.unix(this.state.startTime).format('YYYY-MM-DD'), moment.unix(this.state.endTime).format('YYYY-MM-DD')],
    rangeslider:
    visible: true


    <Plot
    data=this.prepData(this.state.chartData)
    onClick=(data) =>
    var colors = ;
    var clickedPoint = data.points[0].pointNumber;
    for (var i = 0; i < data.points[0].data.y.length; i++)
    if (i === clickedPoint)
    colors[i] = '#9b1e83';
    else
    colors[i] = this.state.defaultColor[i];



    this.setState(
    currentColorsArray: colors,
    barClicked: data.points[0].pointNumber,
    showSummaryPanel: true
    )


    onHover=(hover) => this.getHoverInfo(hover)
    type='bar'
    />


    How should I pass values to onRelayout such that it sets the rangeslider to the area where the onClick event was performed ?










    share|improve this question
























      1












      1








      1








      I have implemented a bar chart with rangeslider using react-plotly.js. I set initial range of the slider based on the input given in a date format. I have also implemented onClick event on barchart which would select a particular bar and change the color when I click on it.
      enter image description here



      In addition to that, I would also like to set the rangeslider to select the area where I have clicked the bar.
      Currently, as you can see in the image above, the rangeslider sets itself back to the initial range value everytime the onClick event is performed. So in order to see the bar that was clicked, I have to manually move the slider to that area.



      xaxis: 

      type: 'date',
      autorange: false,
      fixedrange: true,
      showgrid: false,
      range: [moment.unix(this.state.startTime).format('YYYY-MM-DD'), moment.unix(this.state.endTime).format('YYYY-MM-DD')],
      rangeslider:
      visible: true


      <Plot
      data=this.prepData(this.state.chartData)
      onClick=(data) =>
      var colors = ;
      var clickedPoint = data.points[0].pointNumber;
      for (var i = 0; i < data.points[0].data.y.length; i++)
      if (i === clickedPoint)
      colors[i] = '#9b1e83';
      else
      colors[i] = this.state.defaultColor[i];



      this.setState(
      currentColorsArray: colors,
      barClicked: data.points[0].pointNumber,
      showSummaryPanel: true
      )


      onHover=(hover) => this.getHoverInfo(hover)
      type='bar'
      />


      How should I pass values to onRelayout such that it sets the rangeslider to the area where the onClick event was performed ?










      share|improve this question














      I have implemented a bar chart with rangeslider using react-plotly.js. I set initial range of the slider based on the input given in a date format. I have also implemented onClick event on barchart which would select a particular bar and change the color when I click on it.
      enter image description here



      In addition to that, I would also like to set the rangeslider to select the area where I have clicked the bar.
      Currently, as you can see in the image above, the rangeslider sets itself back to the initial range value everytime the onClick event is performed. So in order to see the bar that was clicked, I have to manually move the slider to that area.



      xaxis: 

      type: 'date',
      autorange: false,
      fixedrange: true,
      showgrid: false,
      range: [moment.unix(this.state.startTime).format('YYYY-MM-DD'), moment.unix(this.state.endTime).format('YYYY-MM-DD')],
      rangeslider:
      visible: true


      <Plot
      data=this.prepData(this.state.chartData)
      onClick=(data) =>
      var colors = ;
      var clickedPoint = data.points[0].pointNumber;
      for (var i = 0; i < data.points[0].data.y.length; i++)
      if (i === clickedPoint)
      colors[i] = '#9b1e83';
      else
      colors[i] = this.state.defaultColor[i];



      this.setState(
      currentColorsArray: colors,
      barClicked: data.points[0].pointNumber,
      showSummaryPanel: true
      )


      onHover=(hover) => this.getHoverInfo(hover)
      type='bar'
      />


      How should I pass values to onRelayout such that it sets the rangeslider to the area where the onClick event was performed ?







      reactjs plotly.js






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 14 '18 at 3:37









      user2128user2128

      88215




      88215






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53292849%2fupdate-rangeslider-range-on-onclick-event-plotly-js%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53292849%2fupdate-rangeslider-range-on-onclick-event-plotly-js%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          政党