Chartjs-Is it possible with Chart js or which chart Library can provide this type of chart?

0👍

Here is a reproduction of your image in the Highcharts. Feel free to customize it more for your needs.

Demo: https://jsfiddle.net/BlackLabel/76frnqc1/

  series: [{
    name: '+14%',
    label: {
      style: {
        fontSize: '22px'
      }
    },
    id: 'main',
    data: [
      3.7, 3.3, 3.9, 5.1, 3.5, 3.8, 4.0, 5.0, 6.1, 3.7, 3.3, 6.4,
      6.9, 6.0, 6.8, 4.4, 4.0, 3.8, 5.0, 4.9, 9.2, 9.6, 9.5, 6.3,
      9.5, 10.8, 14.0, 11.5, 10.0, 10.2, 10.3
    ]
  }, {
    linkedTo: 'main',
    label: {
      enabled: false
    },
    data: [10.3, 9.4, 8.9, 10.6, 10.5, 11.1,
      10.4, 10.7, 11.3, 10.2, 9.6, 10.2, 11.1, 10.8, 13.0, 12.5, 12.5, 11.3,
      10.1
    ],
    pointStart: 30,
    color: 'gray',
    opacity: 0.6
  }],

Leave a comment