Hello,

I want to create a circle chart that will show the progress for the completion of a task\process.

If the task\process is 85% completed I want 85% of a circle to be displayed in a gradient color (white to red), and the other 15% on a different gradient color (yellow to orange)

I am using the palette command to specify the min\max colors and the cbrange command to specify the possible options between these two colors.

I cannot get the full circle painted using two different palettes\cbrange, is this even possible with gnuplot?

Thank you

Script:
set datafile separator comma
set style data circles
set term windows background rgb "0xFFFFFF" size 768, 768
set size square
set grid noxtics
set grid noytics
set xrange [-1.3:1.3]
set yrange [-1.3:1.3]
unset xtics; unset ytics; unset x2tics; unset y2tics
set border 0
set title "{/Tahoma=22 This is the Title}" textcolor rgb "0xE25822" rotate by 0
set key off
set palette defined (0 "white", 1 "dark-red")
set cbrange [1:16]
unset colorbox
set object 1 circle at 0,0 size 1 arc [150.0000:90.0000] fillstyle solid fc palette cb 1
set object 2 circle at 0,0 size 1 arc [55.0000:72.0000] fillstyle solid fc palette cb 2
set object 3 circle at 0,0 size 1 arc [38.0000:55.0000] fillstyle solid fc palette cb 3
set object 4 circle at 0,0 size 1 arc [21.0000:38.0000] fillstyle solid fc palette cb 4
set object 5 circle at 0,0 size 1 arc [4.0000:21.0000] fillstyle solid fc palette cb 5
set object 6 circle at 0,0 size 1 arc [347.0000:4.0000] fillstyle solid fc palette cb 6
set object 7 circle at 0,0 size 1 arc [330.0000:347.0000] fillstyle solid fc palette cb 7
set object 8 circle at 0,0 size 1 arc [313.0000:330.0000] fillstyle solid fc palette cb 8
set object 9 circle at 0,0 size 1 arc [296.0000:313.0000] fillstyle solid fc palette cb 9
set object 10 circle at 0,0 size 1 arc [279.0000:296.0000] fillstyle solid fc palette cb 10
set object 11 circle at 0,0 size 1 arc [262.0000:279.0000] fillstyle solid fc palette cb 11
set object 12 circle at 0,0 size 1 arc [245.0000:262.0000] fillstyle solid fc palette cb 12
set object 13 circle at 0,0 size 1 arc [228.0000:245.0000] fillstyle solid fc palette cb 13
set object 14 circle at 0,0 size 1 arc [211.0000:228.0000] fillstyle solid fc palette cb 14
set object 15 circle at 0,0 size 1 arc [194.0000:211.0000] fillstyle solid fc palette cb 15
set object 16 circle at 0,0 size 1 arc [177.0000:194.0000] fillstyle solid fc palette cb 16
set palette defined (0 "yellow", 1 "orange")
set cbrange [1:5]
unset colorbox
set object 17 circle at 0,0 size 1 arc [160.0000:177.0000] fillstyle solid fc palette cb 1
set object 18 circle at 0,0 size 1 arc [143.0000:160.0000] fillstyle solid fc palette cb 2
set object 19 circle at 0,0 size 1 arc [126.0000:143.0000] fillstyle solid fc palette cb 3
set object 20 circle at 0,0 size 1 arc [109.0000:126.0000] fillstyle solid fc palette cb 4
set object 21 circle at 0,0 size 1 arc [91.0000:109.0000] fillstyle solid fc palette cb 5
plot 100