Highlight Header When Cell Selected Plugin
VTable provides a plugin to highlight the corresponding headers when a cell is selected, supporting highlighting of row and column headers.

Header Highlight Plugin Configuration Options
HighlightHeaderWhenSelectCellPluginHeader highlight when cell selected plugin, can be configured with the following parameters:columnHighlightWhether to highlight column headersrowHighlightWhether to highlight row headerscolHighlightBGColorColumn header highlight background colorrowHighlightBGColorRow header highlight background colorcolHighlightColorColumn header highlight font colorrowHighlightColorRow header highlight font color
Plugin parameter types:
interface IHighlightHeaderWhenSelectCellPluginOptions {
rowHighlight?: boolean;
colHighlight?: boolean;
colHighlightBGColor?: string;
colHighlightColor?: string;
rowHighlightBGColor?: string;
rowHighlightColor?: string;
}
Usage Example:
For specific usage, refer to the demo