According to the manual of pgfplotstable it is fairly easy to set the color of a whole row or a whole column of a table. However, I would like to style only one element located in a certain row and column.
There is \pgfplotstablegetelem{<row>}{<col>}\of{<table>} for accessing table elements.
I can style elements determined by their signs: columns/account1/.style={fonts by sign={}{\color{red}}}.
How can I style 22 in the following example identified by its row-columns-coordinates (colB,2)? This feature makes sense, if I load data from a file with plain data.
\pgfplotstabletypeset[col sep=&,row sep=\\,sci zerofill]{
colA & colB & colC \\
11 & 12 & 13 \\
21 & 22 & 23 \\
}
