Giter VIP home page Giter VIP logo

Comments (6)

ppotaczek avatar ppotaczek commented on July 21, 2024 1

You can use almost the same logic, but in some navigation events. Please check the example below.

Live example: https://codesandbox.io/p/sandbox/highcharts-react-demo-forked-3hv7q6
API Reference: https://api.highcharts.com/highstock/navigation

from highcharts-react.

ppotaczek avatar ppotaczek commented on July 21, 2024

Hi @dogankablan,

You can use similar logic as the built-in save chart button in stock tools: https://github.com/highcharts/highcharts/blob/40735d878113ee1cc3c070c4bbe27356cf7a9b80/ts/Stock/StockTools/StockToolsBindings.ts#L1950

  const saveChartOptions = () => {
    if (chartComponent) {
      const chart = chartComponent.current.chart;
      const annotations = [],
        indicators = [],
        flags = [],
        yAxes = [];

      chart.annotations.forEach(function (annotation, index) {
        annotations[index] = annotation.userOptions;
      });
      chart.series.forEach(function (series) {
        if (series.is("sma")) {
          indicators.push(series.userOptions);
        } else if (series.type === "flags") {
          flags.push(series.userOptions);
        }
      });
      chart.yAxis.forEach(function (yAxis) {
        if (yAxis.userOptions.className !== "highcharts-navigator-yaxis") {
          yAxes.push(yAxis.options);
        }
      });

      setSavedChartOptions({
        annotations,
        indicators,
        flags,
        yAxes,
      });
    }
  };

Live example: https://codesandbox.io/p/sandbox/highcharts-react-demo-forked-rg43m7?file=%2Fdemo.jsx

Best regards!

from highcharts-react.

dogankablan avatar dogankablan commented on July 21, 2024

Thank you for your response.

I want to perform the registration process by detecting user events instead of using a button and record the registration on the state.

Is it possible for me to do this?

from highcharts-react.

ppotaczek avatar ppotaczek commented on July 21, 2024

@dogankablan, I am not quite sure what you want to achieve, so could you add more details to your question? What do you mean by user events?

from highcharts-react.

dogankablan avatar dogankablan commented on July 21, 2024

@ppotaczek what I mean by user events is the drawings made by the user using drawing tools. For example, when the user adds a flag, I want to transfer the values of the drawings made on the chart into the state. This applies to all stock tools. Currently, I trigger this recording process with a button. However, I want to trigger it based on the drawing actions the user takes and transfer them into the state, rather than triggering it with a button.

from highcharts-react.

dogankablan avatar dogankablan commented on July 21, 2024

Thank you for your support.

from highcharts-react.

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.