I have problems with gnuplot histogram. I have file data and want to create xtics manually. Here my data:
5 10 15 20 25 30 35
Here my gnuplot:
set terminal pngcairo enhanced font "arial,10" fontscale 1.0 size 500, 350
set output 'histograms.2.png'
set boxwidth 0.9 absolute
set style fill solid 1.00 border lt -1
set key inside right top vertical Right noreverse noenhanced autotitles nobox
set style histogram clustered gap 1 title offset character 0, 0, 0
set datafile missing '-'
set style data histograms
set xtics border in scale 0,0 nomirror rotate by -45 offset character 0, 0, 0 autojustify
set xtics norangelimit font ",8"
set title "testing"
plot 'histogram2.dat' using($0):xtic("sdaf") title "Legend 1", \
'' using($2):xtic("sdasa") title "Legend 2", \
'' using($3):xtic("sdSs") title "Legend 3", \
'' using($4) title "Legend 4", \
'' using($5) title "Legend 5", \
'' using($6) title "Legend 6", \
'' using($7) title "Legend 7"
In my current graphs, the first row can not appear at the graphs. Also I want to make label at x axis and also have the same colors for all bar.
here my current output:

