Marc
Marc

Reputation: 3959

How to set color for Columnchart in Azure Data Explorer

I want to render specific requests from my Application Insights as a columnchart using Log Analytics query language:

My Query:

requests
| where operation_Name == "MyOperationName" 
| render columnchart

Output:

Columnchart

I would like to have different colors for successful and unsuccessful requests. There is already a boolean column ("success") available. How can I use that property to set specific colors?

Upvotes: 4

Views: 8558

Answers (2)

Jason Knighton
Jason Knighton

Reputation: 73

I was able to set colors by using Application Insights workbooks. When creating the query there is a button for chart settings and within it look for the series settings tab. Currently it allows setting colors and changing a result value's display label.

Upvotes: 2

KrishnaG
KrishnaG

Reputation: 3484

AFAIK, this is currently unsupported. The similar feedback shown here and here were shared directly with the responsible Azure feature team. I recommend navigating to the above link(s) and clicking the vote button to raise visibility and priority on this or else providing your own new feedback and suggestions to improve the product better. Hope this helps!!

Upvotes: 3

Related Questions