You did minor mistake,
$('.circle-chart').css('background: conic-gradient(green 0% 60%, grey 60% 100%)')
should be (Check below how we need to apply property value)
$('.circle-chart').css('background', 'conic-gradient(green 0% 10%, grey 30% 100%)')