を使用して、Google アナリティクスでいくつかのカスタム変数を設定しています_setCustomVar
。構文を使用してカスタム変数の値を入力するドキュメント (公式ではない) を見たことがあります。の値が の文字列連結コピーになることP1:P2:P3
を示唆する決定的な証拠を Google Developers のドキュメントで見つけることができません。これは事実ですか?P1:P2:P3
Golf:Player:Scottish
_gaq.push(['_setCustomVar',
3,
‘P1',
‘Golf’,
3
]);
_gaq.push(['_setCustomVar',
4,
‘P2',
‘Player’,
3
]);
_gaq.push(['_setCustomVar',
5,
‘P3',
‘Scottish’,
3
]);
_gaq.push(
['_setAccount', 'UA-123456-1'],
['_setCustomVar', 1, 'Category', 'P1:P2:P3']
);