material color reference not working

Hello Mathew/Patrick,

we have generated the below CZML from czmlWriter , but the material.solodColor.color is not rendering when it is referenced by another entity as given below:

Test#polyline.material.solidColor.color not working but Test#polyline.width is working in the below CZML. Please let me know where i am going wrong in the below CZML.

{

“id”:“Test”,

“polyline”:{

“material”:{

“solidColor”:{

“color”:{

“rgba”:[

255,0,0,255

]

}

}

},

“width”:4,

“positions”:{

“cartographicDegrees”:[

-120.57409251909698,34.79732955775486,0,-120.57425718912793,34.79738731775063,0,-120.5744197091585,34.79744426774644,0,-120.57458221918908,34.7975012177423,0

]

}

}

},

{

“id”:“Test2”,

“polyline”:{

“material”:{

“solidColor”:{

“color”:{

“reference”:“Test#polyline.material.solidColor.color”

}

}

},

“width”:{

“reference”:“Test#polyline.width”

},

“positions”:{

“cartographicDegrees”:[

-120.57476677921998,34.797523327733344,0,-120.57492987925092,34.79758317772942,0,-120.57509296928178,34.79764303772552,0,-120.57525606931273,34.79770288772155,0

]

}

}

}

thanks and regards,

chandrika

Can you try “reference”:“Test#polyline.material.color”? I believe the solidColor part needs to be left out because that denotes the type of color. It’s a little weird, but I don’t think I ever tries to link to a material property before.