Is there any way to place HTML code into Template for category-axis?
Documentation suggests one way like this:
<ChartCategoryAxisLabels Template="#=value#"></ChartCategoryAxisLabels>
But I need to realize more complicated tasks. For example, show image instead of simple text (place url into on of the categories and then show it through <img> tag). Now, I сouldn't do anything more than:
<ChartCategoryAxes>
<ChartCategoryAxis Name="chartCategories" Categories="@NumberCategoriesData"></ChartCategoryAxis>
<ChartCategoryAxis Name="pictureCategories" Categories="@PictureCategoriesData">
<ChartCategoryAxisLabels Template="#=value#"></ChartCategoryAxisLabels>
</ChartCategoryAxis>
</ChartCategoryAxes>
<ChartValueAxes>
<ChartValueAxis AxisCrossingValue="@crossingPoints"></ChartValueAxis>
</ChartValueAxes>