Git Product home page Git Product logo

Comments (5)

weizhenye avatar weizhenye commented on June 12, 2024

Try to use arrow function mouseOver: (e) => {}, or save this as vm like:

data() {
  const vm = this;
  return {
    // ...
    mouseOver(e) {
      console.log(vm.$refs);
    }
  }
}

from vue-highcharts.

jimmiejackson414-zz avatar jimmiejackson414-zz commented on June 12, 2024

Ah of course! I changed it to an arrow function and am able to retrieve this.$refs now. However now, when I look into the chart object, I don't see a text object or function inside of renderer.

events: {
  mouseOver: (e) => {
    const { chart } = this.$refs.highchartsRef;
    console.log(chart.renderer);
  }
}

This console log returns this inside of chart.renderer:
Screen Shot 2020-11-12 at 7 50 33 AM

from vue-highcharts.

weizhenye avatar weizhenye commented on June 12, 2024

What's the version of Highcharts?
chart.renderer should be an intance of SVGRenderer, you can find more detail in documents.

from vue-highcharts.

jimmiejackson414-zz avatar jimmiejackson414-zz commented on June 12, 2024

I just installed it yesterday, so I have v8.2.2.

What's funny though is that when I console.log chart.renderer.text, it returns the function correctly, but nothing is being displayed in the center of the donut.

events: {
  mouseOver: (e) => {
    const { chart } = this.$refs.highchartsRef;
    console.log(chart.renderer.text);
    chart.renderer.text('40K Users', 100, 90);
  }
}

from vue-highcharts.

jimmiejackson414-zz avatar jimmiejackson414-zz commented on June 12, 2024

Ok I've got something displaying now by adding .css properties and calling .add(). I'll keep fiddling around with it to get it right, thanks so much for your help!

mouseOver: (e) => {
  const { chart } = this.$refs.highchartsRef;
  chart.renderer
    .text('40K Users', 100, 90, true)
    .css({
      color: '#f00',
      fontSize: '
    })
    .add();
},

from vue-highcharts.

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.