This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and availability dates for Spotfire products and services. It is for informational purposes only and its contents are subject to change without notice. Planning to implement - generally 6-12 months out. Likely to Implement - generally means 12-18 months out.
Copyright © 2014-2023 Cloud Software Group, Inc. All Rights Reserved.
Cloud Software Group, Inc. ("Company") follows the EU Standard Contractual Clauses as per the Company's Data Processing Agreement.
Terms of Use |
Privacy Policy |
Trademarks |
Patents |
Contact Us
Johan, thanks for your tip.
It does allow value setting, even though docs only mentions
get
.Docs
This should already be possible. The LineConnection property gets an object that can be used to configure it. Here's a snippet in C# that does that:
l
ayerVisualization.LineConnection.ConnectionAxis.Expression = "<[ConnectByColumn]>";
layerVisualization.LineConnection.OrderAxis.Expression = "Avg([OrderByColumn])>";
layerVisualization.LineConnection.Color = Color.Blue;
Goal
Use IronPython to set
LineConnection
property ofMarkerLayer
in Map Chart.Issue
Based on documentation, it seems one can only get, but not set
LineConnection
.