Ask A Question

Notifications

You’re not receiving notifications from this thread.

how i plot a profit_loss graph

Ahmedzain asked in Rails

i have income,expense, user controller i want to plot a graph of currrent user profit i calculated it in model.
def total_expense
expenses.pluck(:amount).sum
end
def total_incomes
incomes.pluck(:amount).sum
end
def profit_loss
total_incomes - total_expense
end
how i plot a graph of profit_loss its value is not save in data base how i can plot a graph of profit_loss

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 87,563+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.