tune.svm returns an object of class "tune" :
> class(tunedsvm) [1] "tune"
Therefore the corresponding help page is ?plot.tune . A little reading of this shows a few useful arguments for customization:
plot(tunedsvm, transform.x = log2, transform.y = log2, # log 2 scale for x and y transform.z = function(x) 1 - x, # convert error rate to accuracy rate swapxy = TRUE, # put gamma on y axis color.palette = terrain.colors, # define color palette for contours xlab = expression(log[2](cost)), ylab = expression(log[2](gamma)), main = "Accuracy Rate of SVM")
This code creates the following graph:

Heather turner
source share