Is it possible to use indices as xtic values in a histogram?
问题 In a file with the data in the following structure: # [year] "Town A" population "Town B" population "Town C" population # [year2] "Town A" population "Town B" population "Town C" population # [year3] "Town A" population "Town B" population "Town C" population I have managed to create a histogram using the following: set style data histogram set style histogram columnstacked p 'file.dat' index '[year]' u 2:key(1) ,\ '' index '[year2]' u 2,\ '' index '[year3]' u 2; The previous settings