Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
Column Chart formatting
posted

I have a simple category chart created. I'm trying to format the label, tooltip and numeric values as currency format but i can't find where to do it using the Asp.Net MVC Helper. 

Here's the code:


<div id="columnChart" class="chart">
@(
Html.Infragistics()
.DataChart(Model.ChartSummary.AsQueryable())
.ID("WeeklyPayments")
.Width("100%")
.Height("400px")
.Title("Payments last 7 days")
.Legend(legend => legend.ID("legend"))
.Axes(axes =>
{
axes.CategoryX("xAxis")
.Label(item => item.FormattedDate);
axes.NumericY("yAxis")
.Title("$ Payment Totals");
})
.Series(series =>
{
series.Column("Payment Type").ValueMemberPath(item=>item.CreditCardAmount).Title("Credit Card").XAxis("xAxis").YAxis("yAxis").ShowTooltip(true);
series.Column("IVR").ValueMemberPath(item => item.IVRAmount).Title("IVR").XAxis("xAxis").YAxis("yAxis").ShowTooltip(true);
series.Column("Check").ValueMemberPath(item => item.CheckAmount).Title("Check").XAxis("xAxis").YAxis("yAxis").ShowTooltip(true);
series.Column("Other").ValueMemberPath(item => item.OtherAmount).Title("Other").XAxis("xAxis").YAxis("yAxis").ShowTooltip(true);
})
.DataBind()
.Render()
)
</div>
<div id="legend" class="legend"></div>

I would like the Legend, and tooltips to display in a currency format ie. $10.00

Parents
No Data
Reply
  • 0
    Offline posted

    Wave Executor website is a quick, free method for running Roblox scripts. On the off chance that you choose to update, you can get top notch help.

    The Roblox specialist that individuals need the most is delta executor website. Regardless of the way that it has just been accessible for a brief time frame, its prominence has surpassed that of the Roblox projects.

Children
No Data