Set value to range from another column
P粉333186285
2023-08-08 11:52:43
<p>I have 3 columns in my table</p>
<pre class="brush:php;toolbar:false;">|week | % |pts |
|:----|:--|:---|
| 1 |34 |37 |
| 2 |44 |21 |
| 3 |41 |67 |
| 4 |59 |135 |
| 5 |49 |102 |
| 6 |57 |11 |
| 7 |60 |4 |
| 8 |47 |53 |</pre>
<p>The first column is used as the x-axis<br /><br /> The second column (percentage numbers) I use to visualize in the spline. The third column is the points (which I generated in the query to set the percentage for the second column). What I want is to change the color of the recommender (%) spline if the recommender points are less than 43 points, without showing the recommender points spline. I don’t know what to do now<br /><br />This is the fiddle link:<br /><br />https://jsfiddle.net/czmnra04/<br / ><br />Family members, please help</p><p><br /></p>
If you want to adjust the colors based on the data from the third column, using areas won't work here because they are based on the axes, which are generated based on the values from the second column.
So, if you want to change the color of a specific point in the second column based on a custom value in the third column, you can use the chart.events.load() callback function, and use point.update() Method conditionally updates the color of all points.
Demo: https://jsfiddle.net/BlackLabel/ydc3m45n/
API: https://api.highcharts .com/highcharts/chart.events.load
https://api.highcharts.com/class-reference/Highcharts.Point#update